#include <engine.h>
Inheritance diagram for csEngineConfig:
Public Methods | |
SCF_DECLARE_EMBEDDED_IBASE (csEngine) | |
virtual bool | GetOptionDescription (int idx, csOptionDescription *option) |
Get option description; return FALSE if there is no such option. | |
virtual bool | SetOption (int id, csVariant *value) |
Set option. | |
virtual bool | GetOption (int id, csVariant *value) |
Get option. |
This class is used as an embedded SCF object within csEngine. Typically, this class would be declared as an inner class of csEngine, but the NextStep compiler was unable to grok that usage after csObject (from which csEngine inherits) was changed so that it inherits from iObject. Somehow, the compiler was getting confused by the QueryInterface(), IncRef(), and DecRef() methods declared here as well as in iEngine and csObject (both of which csEngine inherits from). Making csEngineConfig stand-alone works around the problem.