/***********************************************************************/ /* Open Visualization Data Explorer */ /* (C) Copyright IBM Corp. 1989,1999 */ /* ALL RIGHTS RESERVED */ /* This code licensed under the */ /* "IBM PUBLIC LICENSE - Open Visualization Data Explorer" */ /***********************************************************************/ #include #ifndef _ValueDefinition_h #define _ValueDefinition_h #include "UIConfig.h" #include "defines.h" #include "InteractorDefinition.h" // // Class name definition: // #define ClassValueDefinition "ValueDefinition" // // Forward definitions // class ParameterDefinition; class Interactor; // // ValueDefinition class definition: // class ValueDefinition : public InteractorDefinition { private: protected: // // Protected member data: // // // Allocate a new Node of the corresponding type. // virtual Node *newNode(Network *net, int instance = -1); public: // // Constructor: // ValueDefinition() { } // // Destructor: // ~ValueDefinition() { } // // Allocate a new ValueDefinition. // This function is intended to be used as an allocator in // theNDAllocatorDictionary. // static NodeDefinition *AllocateDefinition(); // // Returns a pointer to the class name. // virtual const char* getClassName() { return ClassValueDefinition; } }; #endif // _ValueDefinition_h