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 "PrintDefinition.h"
15 #include "PrintNode.h"
16 
newNode(Network * net,int inst)17 Node *PrintDefinition::newNode(Network *net, int inst)
18 {
19     PrintNode *n = new PrintNode(this, net, inst);
20     return n;
21 }
22 
AllocateDefinition()23 NodeDefinition *PrintDefinition::AllocateDefinition()
24 {
25     return (NodeDefinition*) new PrintDefinition();
26 }
27 
28