|
typedef DistiAttribute< T > | _BaseClass |
| Deprecated typedef for the base class.
|
|
typedef DistiAttribute< T > | BaseClass |
| Typedef for the base class.
|
|
typedef void(containerT::* | SetMethodType) (SetArgT) |
| Typedef for the set method function pointer.
|
|
typedef GetReturnT(containerT::* | GetMethodType) () |
| Typedef for the get method function pointer.
|
|
typedef GetReturnT(containerT::* | GetMethodConstType) () const |
| Typedef for the get method const function pointer.
|
|
typedef unsigned int | CallbackID |
| Type for unique identifiers.
|
|
|
| DistiAttributeProperty (const AttributeName &name, containerT *frame, T *attribPtr, SetMethodType setMethod, GetMethodType getMethod) |
|
virtual bool | OkToWrite () const override |
|
virtual std::string | ValueString () override |
|
virtual void | ValueString (const std::string &s) override |
|
virtual long | ValueInt () override |
|
virtual void | ValueInt (long val) override |
|
virtual double | ValueFloat () override |
|
virtual void | ValueFloat (double val) override |
|
virtual std::ostream & | WriteValue (std::ostream &outstr) override |
|
virtual std::istream & | ReadValue (std::istream &instr) override |
|
virtual T | Value () override |
|
virtual void | Value (const T &val) override |
|
| DistiAttribute (CallbackMethodCallerBase *callback, const AttributeName &name, T *attribPtr) |
|
| DistiAttribute (CallbackMethodCallerBase *callback, const AttributeName &name, const T &initialValue) |
|
bool | Copyable () const override |
|
long | ValueInt () override |
|
void | ValueInt (long val) override |
|
double | ValueFloat () override |
|
void | ValueFloat (double val) override |
|
DistiAttributeBase & | operator= (const DistiAttributeBase &oldClass) override |
|
std::ostream & | WriteValue (std::ostream &outstr) override |
|
std::istream & | ReadValue (std::istream &instr) override |
|
virtual T | Value () |
|
virtual void | Value (const T &val) |
|
bool | operator== (const DistiAttributeBase &rArg) override |
|
| ~DistiAttribute () override |
|
| DistiAttributeBase (CallbackMethodCallerBase *callback, const AttributeName &name, bool localStorage) |
|
virtual DistiAttributeBase & | operator= (const DistiAttributeBase &oldClass) |
|
const AttributeName & | Name () const |
|
AttributeName & | Name () |
|
bool | LocalStorage () const |
|
virtual bool | Copyable () const |
|
virtual bool | OkToWrite () const |
|
virtual bool | ValueChanged () |
|
virtual void | ResetValueChanged () |
|
virtual std::string | ValueString () |
|
virtual void | ValueString (const std::string &s) |
|
virtual long | ValueInt () |
|
virtual void | ValueInt (long val) |
|
virtual double | ValueFloat () |
|
virtual void | ValueFloat (double val) |
|
virtual void | CallCallback () |
| Calls callback CallType3 if it has been set.
|
|
virtual std::ostream & | WriteValue (std::ostream &outstr)=0 |
|
virtual std::istream & | ReadValue (std::istream &instr)=0 |
|
virtual bool | operator== (const DistiAttributeBase &r) |
|
template<class valType > |
DistiAttributeBase & | operator<< (const valType &val) |
|
template<class valType > |
DistiAttributeBase & | operator>> (valType &val) |
|
virtual CallbackID | RegisterObserver (AttributeObserver *observer) |
|
virtual void | UnregisterObserver (CallbackID id) |
|
virtual void | NotifyObservers () |
|
void | AddWeakReference (WeakReference *weakRef) override |
|
void | NotifyWeakReferenceDestroyed (WeakReference *ref) override |
|
virtual void | AddWeakReference (WeakReference *weakRef)=0 |
|
virtual void | NotifyWeakReferenceDestroyed (WeakReference *weakReference)=0 |
|
template<class containerT, class T, class SetArgT = const T&, class GetReturnT = T>
class disti::DistiAttributeProperty< containerT, T, SetArgT, GetReturnT >
The attribute used in generated code for accessing class properties It can have a get method, set method, and an attribute pointer, or almost any combination of the three. T must have a default constructor, even if it doesn't initialize. SetArgT is the argument type for the SetMethodType.
Specify this if the argument for the Set call is not "const &T". GetReturnT is the return type for the GetMethodType.
Specify this if the return type for the Get call is not T The get and set methods are called when the attribute interface is used for access. If the methods are not provided, the attribute stream operators are used instead. If the property does not have a method or attribute pointer, it will not be able to read/write its value.