- Timestamp:
- 03/21/12 18:36:20 (14 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/src/osgPlugins/txp/trpage_parse.cpp
r12538 r13041 24 24 subclassing trpgReadBuffer and replacing its virtual methods. That's what 25 25 trpgMemReadBuffer is doing. 26 26 27 27 This file also contains the implementation of trpgSceneParser(). 28 28 That class implements a set of callbacks for handling the Pushes and Pops … … 98 98 public: 99 99 WriteWrapper(trpgReadWriteable *in_wr) { wr = in_wr; }; 100 void *Parse(trpgToken,trpgReadBuffer &buf) { 100 void *Parse(trpgToken,trpgReadBuffer &buf) { 101 101 if (wr->Read(buf)) 102 102 return wr; … … 132 132 return 0; 133 133 } 134 134 135 135 136 136 // Remove Callback … … 241 241 trpgSceneHelperPush(trpgSceneParser *in_parse) 242 242 { parse = in_parse; }; 243 243 244 244 void *Parse(trpgToken /*tok*/,trpgReadBuffer& /*buf*/) 245 245 {
