Name

OwnedWrappedObject — Interface to the owned objects wrapping internal Serna classes.

Synopsis

class OwnedWrappedObject
  :  : public SimpleWrappedObjectSernaApi::SimpleWrappedObject
 {
public:
  // construct/copy/destruct
  OwnedWrappedObject(SernaApiBase * = 0);
  OwnedWrappedObject(const OwnedWrappedObject &);
  OwnedWrappedObject& operator=(const OwnedWrappedObject &);
  ~OwnedWrappedObject();

  // public member functions

  void setRep(SernaApiBase *) ;

  // private member functions

  void do_setrep(SernaApiBase *) ;
};

Description

OwnedWrappedObject construct/copy/destruct

  1. OwnedWrappedObject(SernaApiBase * rep = 0);


  2. OwnedWrappedObject(const OwnedWrappedObject & );


  3. OwnedWrappedObject& operator=(const OwnedWrappedObject & );


  4. ~OwnedWrappedObject();


OwnedWrappedObject public member functions

  1. void setRep(SernaApiBase * ) ;


OwnedWrappedObject private member functions

  1. void do_setrep(SernaApiBase * ) ;