1 /***********************************************************************/
2 /* Open Visualization Data Explorer                                    */
3 /* (C) Copyright IBM Corp. 1989,1999                                   */
4 /* ALL RIGHTS RESERVED                                                 */
5 /* This code licensed under the                                        */
6 /*    "IBM PUBLIC LICENSE - Open Visualization Data Explorer"          */
7 /***********************************************************************/
8 
9 #include <dxconfig.h>
10 #include "../base/defines.h"
11 
12 
13 
14 #include "DisplayDefinition.h"
15 #include "DisplayNode.h"
16 
AllocateDefinition()17 NodeDefinition *DisplayDefinition::AllocateDefinition()
18 {
19     return new DisplayDefinition;
20 }
21 
22 
DisplayDefinition()23 DisplayDefinition::DisplayDefinition() :
24     DrivenDefinition()
25 {
26 }
27 
28 
newNode(Network * net,int instance)29 Node *DisplayDefinition::newNode(Network *net, int instance)
30 {
31     DisplayNode *d = new DisplayNode(this, net, instance);
32     return d;
33 }
34 
35