#include <gup.h>
Public Member Functions |
|
GUPHandler () | |
void | SetCD (ClassDesc *dll) |
ClassDesc * | GetCD () |
void | SetID (Class_ID cid) |
Class_ID | GetID () |
void | SetInstance (GUP *ins) |
GUP * | GetInstance () |
GUP * | Gup () |
bool | operator== (const GUPHandler &b) const |
GUPHandler | ( | ) |
void SetCD | ( | ClassDesc * | dll | ) | [inline] |
{ cd = dll; }
ClassDesc* GetCD | ( | ) | [inline] |
{ return cd;}
void SetID | ( | Class_ID | cid | ) | [inline] |
{ id = cid; }
Class_ID GetID | ( | ) | [inline] |
{ return id;}
void SetInstance | ( | GUP * | ins | ) | [inline] |
{ instance = ins; }
GUP* GetInstance | ( | ) | [inline] |
{ return instance; }
GUP* Gup | ( | ) | [inline] |
{ return instance; }
bool operator== | ( | const GUPHandler & | b | ) | const [inline] |
{ return cd == b.cd && id == b.id && instance == b.instance; }