Base Module VST 3.7
SDK for developing VST plug-in
|
Implements FUnknown and IDependent. More...
#include <fobject.h>
Public Member Functions | |
FObject ()=default | |
default constructor... More... | |
FObject (const FObject &) | |
FObject & | operator= (const FObject &) |
overloads operator "=" as the reference assignment More... | |
virtual | ~FObject () |
destructor... More... | |
virtual FClassID | isA () const |
a local alternative to getFClassID () More... | |
virtual bool | isA (FClassID s) const |
evaluates if the passed ID is of the FObject type More... | |
virtual bool | isTypeOf (FClassID s, bool=true) const |
evaluates if the passed ID is of the FObject type More... | |
int32 | getRefCount () |
returns the current interface reference count More... | |
FUnknown * | unknownCast () |
get FUnknown interface from object More... | |
tresult | queryInterface (const TUID _iid, void **obj) SMTG_OVERRIDE |
please refer to FUnknown::queryInterface () More... | |
uint32 | addRef () SMTG_OVERRIDE |
please refer to FUnknown::addref () More... | |
uint32 | release () SMTG_OVERRIDE |
please refer to FUnknown::release () More... | |
void | update (FUnknown *, int32) SMTG_OVERRIDE |
empty virtual method that should be overridden by derived classes for data updates upon changes More... | |
virtual void | addDependent (IDependent *dep) |
adds dependency to the object More... | |
virtual void | removeDependent (IDependent *dep) |
removes dependency from the object More... | |
virtual void | changed (int32 msg=kChanged) |
Inform all dependents, that the object has changed. More... | |
virtual void | deferUpdate (int32 msg=kChanged) |
Similar to triggerUpdates, except only delivered in idle (usefull in collecting updates). More... | |
virtual void | updateDone (int32) |
empty virtual method that should be overridden by derived classes More... | |
virtual bool | isEqualInstance (FUnknown *d) |
template<class C > | |
IPtr< C > | fromUnknown (FUnknown *unknown) |
Static Public Member Functions | |
static FClassID | getFClassID () |
return Class ID as an ASCII string (statically) More... | |
static void | setUpdateHandler (IUpdateHandler *handler) |
set method for the local attribute More... | |
static IUpdateHandler * | getUpdateHandler () |
get method for the local attribute More... | |
static bool | classIDsEqual (FClassID ci1, FClassID ci2) |
compares (evaluates) 2 class IDs More... | |
static FObject * | unknownToObject (FUnknown *unknown) |
pointer conversion from FUnknown to FObject More... | |
template<class Class > | |
static IPtr< Class > | fromUnknown (FUnknown *unknown) |
convert from FUnknown to FObject More... | |
Static Public Attributes | |
static const FUID | iid |
Special UID that is used to cast an FUnknown pointer to a FObject. More... | |
Protected Attributes | |
int32 | refCount = 1 |
COM-model local reference count. More... | |
Static Protected Attributes | |
static IUpdateHandler * | gUpdateHandler = nullptr |
Implements FUnknown and IDependent.
FObject is a polymorphic class that implements IDependent (of SKI module) and therefore derived from FUnknown, which is the most abstract base class of all.
All COM-like virtual methods of FUnknown such as queryInterface(), addRef(), release() are implemented here. On top of that, dependency-related methods are implemented too.
Pointer casting is done via the template methods FCast, either FObject to FObject or FUnknown to FObject.
FObject supports a new singleton concept, therefore these objects are deleted automatically upon program termination.
|
default |
default constructor...
|
virtual |
destructor...
|
inlinestatic |
return Class ID as an ASCII string (statically)
|
inlinevirtual |
a local alternative to getFClassID ()
|
inlinevirtual |
evaluates if the passed ID is of the FObject type
|
inlinevirtual |
evaluates if the passed ID is of the FObject type
|
inline |
returns the current interface reference count
|
inline |
get FUnknown interface from object
tresult queryInterface | ( | const TUID | _iid, |
void ** | obj | ||
) |
please refer to FUnknown::queryInterface ()
uint32 addRef | ( | ) |
please refer to FUnknown::addref ()
uint32 release | ( | ) |
please refer to FUnknown::release ()
|
inline |
empty virtual method that should be overridden by derived classes for data updates upon changes
|
virtual |
adds dependency to the object
Reimplemented in UpdateHandler.
|
virtual |
removes dependency from the object
Reimplemented in UpdateHandler.
|
virtual |
Inform all dependents, that the object has changed.
|
virtual |
Similar to triggerUpdates, except only delivered in idle (usefull in collecting updates).
Reimplemented in UpdateHandler.
|
inlinevirtual |
empty virtual method that should be overridden by derived classes
|
inlinevirtual |
|
inlinestatic |
set method for the local attribute
|
inlinestatic |
get method for the local attribute
|
inlinestatic |
pointer conversion from FUnknown to FObject
|
inlinestatic |
convert from FUnknown to FObject
|
inline |
|
static |
Special UID that is used to cast an FUnknown pointer to a FObject.
|
protected |
COM-model local reference count.
|
staticprotected |