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 #include "PickDefinition.h"
14 #include "PickNode.h"
15 
AllocateDefinition()16 NodeDefinition *PickDefinition::AllocateDefinition()
17 {
18     return new PickDefinition;
19 }
20 
21 
PickDefinition()22 PickDefinition::PickDefinition() : ProbeDefinition()
23 {
24 }
25 
newNode(Network * net,int instance)26 Node *PickDefinition::newNode(Network *net, int instance)
27 {
28     return new PickNode(this, net, instance);
29 }
30