#include <osg/Referenced>
#include <osg/CopyOp>
#include <osg/ref_ptr>
#include <osg/Notify>
#include <string>
#include <vector>
Go to the source code of this file.
|
namespace | osg |
| The core osg library provides the basic scene graph classes such as Nodes, State and Drawables, and maths and general helper classes.
|
|
#define | OSG_OBJECT 1 |
#define | _ADDQUOTES(def) |
#define | ADDQUOTES(def) |
#define | META_Object(library, name) |
| META_Object macro define the standard clone, isSameKindAs and className methods.
|
#define | OSG_INIT_SINGLETON_PROXY(ProxyName, Func) |
| Helper macro that creates a static proxy object to call singleton function on it's construction, ensuring that the singleton gets initialized at startup.
|
◆ _ADDQUOTES
#define _ADDQUOTES |
( |
| def | ) |
|
◆ ADDQUOTES
Value:
#define _ADDQUOTES(def)
Definition Object:39
◆ META_Object
#define META_Object |
( |
| library, |
|
|
| name ) |
Value: virtual osg::Object* cloneType()
const {
return new name (); } \
virtual bool isSameKindAs(
const osg::Object* obj)
const {
return dynamic_cast<const name *
>(obj)!=
NULL; } \
virtual const char* libraryName() const { return #library; }\
virtual const char* className() const { return #name; }
Copy Op(erator) used to control whether shallow or deep copy is used during copy construction and clo...
Definition CopyOp:41
Base class/standard interface for objects which require IO support, cloning and reference counting.
Definition Object:61
#define NULL
Definition Export:55
META_Object macro define the standard clone, isSameKindAs and className methods.
Use when subclassing from Object to make it more convenient to define the standard pure virtual clone, isSameKindAs and className methods which are required for all Object subclasses.
◆ OSG_INIT_SINGLETON_PROXY
#define OSG_INIT_SINGLETON_PROXY |
( |
| ProxyName, |
|
|
| Func ) |
Value:static struct ProxyName{ ProxyName() { Func; } } s_##ProxyName;
Helper macro that creates a static proxy object to call singleton function on it's construction, ensuring that the singleton gets initialized at startup.
◆ OSG_OBJECT