47 #define REGISTER_DECORATOR(DecoratorCreator) static bool Register##DecoratorCreator = DtDecoratorFactory::instance()->addDecoratorCreator(new DecoratorCreator);
The DtDecoratorFactory is a container for the creators for proxy logics (DtSimObject or DtLocalObject...
Definition: decoratorFactory.h:17
std::map< std::string, DtDecoratorCreator * > DecoratorCreators
Definition: decoratorFactory.h:43
#define DT_DLL_vrfobjcore
This file is used to determine how to build.
Definition: vrfobjcoreDefines.h:24
Represents a single simulation object in the exercise. Object may be VRF simulation, or non-VRF simulated, and may be simulated by the local sim engine, or by a remote sim engine. Only public (external) state of the object is available. All data is read-only. All access to data of the object is thread safe within the simulation frame.
Definition: simObject.h:88
Definition: decoratorBase.h:57
DecoratorCreators myDecoratorCreators
Definition: decoratorFactory.h:44
Definition: decoratorBase.h:30
Definition: decoratorBase.h:44
A locally simulated VRF object. Holds all internal and external data for the object, and provides access to both the current frame and next frame state data for the object. All current frame data is read-only, and next-frame data can be written to. No thread safety guarantees are made on this object during the simulation frame and it should only be accessed by the thread that is simulating the object.
Definition: localObject.h:86