Changeset 10362 for OpenSceneGraph/trunk/include/osg/CopyOp
- Timestamp:
- 06/18/09 12:01:39 (4 years ago)
- Files:
-
- 1 modified
-
OpenSceneGraph/trunk/include/osg/CopyOp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/include/osg/CopyOp
r9407 r10362 31 31 class PrimitiveSet; 32 32 class Shape; 33 class NodeCallback; 33 34 34 35 /** Copy Op(erator) used to control whether shallow or deep copy is used … … 53 54 DEEP_COPY_SHAPES = 1<<9, 54 55 DEEP_COPY_UNIFORMS = 1<<10, 56 DEEP_COPY_NODECALLBACKS = 1<<11, 55 57 DEEP_COPY_ALL = 0x7FFFFFFF 56 58 }; … … 73 75 virtual Shape* operator() (const Shape* shape) const; 74 76 virtual Uniform* operator() (const Uniform* shape) const; 77 virtual NodeCallback* operator() (const NodeCallback* nodecallback) const; 75 78 76 79 protected:
