Hi.
Nice new forum. ^^
While adapting my plugin for R20 I've been sifting through the code in order to get rid of all the red underlines vc++ throws at me. This is the last one:
class SoloPrefs : public PrefsDialogObject
{
INSTANCEOF(SoloPrefs, PrefsDialogObject)
public:
virtual Bool InitValues(const DescID &id, Description* desc = NULL);
virtual Bool Init(GeListNode* node);
virtual Bool GetDParameter(GeListNode *node, const DescID &id, GeData &t_data, DESCFLAGS_GET &flags);
virtual Bool SetDParameter(GeListNode *node, const DescID &id, const GeData &t_data, DESCFLAGS_SET &flags);
virtual Bool GetDEnabling(GeListNode *node, const DescID &id, const GeData &t_data, DESCFLAGS_ENABLE flags, const BaseContainer *itemdesc);
virtual Bool GetDDescription(GeListNode node, Description description, DESCFLAGS_DESC &flags);
virtual Bool Message(GeListNode node, Int32 type, void data);
BaseContainer *GetSoloPrefs();
Int32 dirty;
static NodeData *Alloc() { return gNew SoloPrefs; }
};
How to do the last line correctly? Thanks.