SimpleWrappedObject — Base class for wrapping the internal Serna classes.
class SimpleWrappedObject {
public:
// construct/copy/destruct
SimpleWrappedObject(SernaApiBase * = 0);
~SimpleWrappedObject();
// public member functions
void setRep(SernaApiBase *) ;
SernaApiBase * getRep() const;
bool isNull() const;
operator bool() const;
void releaseRep() ;
bool operator==(const SimpleWrappedObject &) const;
bool operator!=(const SimpleWrappedObject &) const;
bool operator<(const SimpleWrappedObject &) const;
};