#include <osgGA/OrbitManipulator>
Go to the source code of this file.
◆ DART_META_Object
      
        
          | #define DART_META_Object | ( |  | library, | 
        
          |  |  |  | name | 
        
          |  | ) |  |  | 
      
 
Value:  ::osg::Object* cloneType() const override                                    \
  {                                                                            \
  }                                                                            \
  ::osg::Object* clone(const ::osg::CopyOp& copyop) const override             \
  {                                                                            \
    return new name(*
this, copyop);                                            \
 
  }                                                                            \
  bool isSameKindAs(const ::osg::Object* obj) const override                   \
  {                                                                            \
    return dynamic_cast<const name*
>(obj) != NULL;                             \
 
  }                                                                            \
  const char* libraryName() const override                                     \
  {                                                                            \
    return #library;                                                           \
  }                                                                            \
  const char* className() const override                                       \
  {                                                                            \
  }
std::string * name
Definition SkelParser.cpp:1697