Changeset 10671 for OpenSceneGraph/trunk/include/osg/CopyOp
- Timestamp:
- 10/22/09 12:33:16 (4 years ago)
- Files:
-
- 1 modified
-
OpenSceneGraph/trunk/include/osg/CopyOp (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/include/osg/CopyOp
r10362 r10671 25 25 class StateSet; 26 26 class StateAttribute; 27 class StateAttributeCallback; 27 28 class Uniform; 28 29 class Node; … … 32 33 class Shape; 33 34 class NodeCallback; 35 34 36 35 37 /** Copy Op(erator) used to control whether shallow or deep copy is used … … 54 56 DEEP_COPY_SHAPES = 1<<9, 55 57 DEEP_COPY_UNIFORMS = 1<<10, 56 DEEP_COPY_ NODECALLBACKS= 1<<11,58 DEEP_COPY_CALLBACKS = 1<<11, 57 59 DEEP_COPY_ALL = 0x7FFFFFFF 58 60 }; … … 76 78 virtual Uniform* operator() (const Uniform* shape) const; 77 79 virtual NodeCallback* operator() (const NodeCallback* nodecallback) const; 80 virtual StateAttributeCallback* operator() (const StateAttributeCallback* stateattributecallback) const; 78 81 79 82 protected:
