HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
VOP_ParmDSMicroNode.h
Go to the documentation of this file.
1 /*
2  * PROPRIETARY INFORMATION. This software is proprietary to
3  * Side Effects Software Inc., and is not to be reproduced,
4  * transmitted, or disclosed in any way without written permission.
5  *
6  * NAME: VOP_ParmDSMicroNode.h (VOP Library, C++)
7  *
8  * COMMENTS: DEP_MicroNode subclass representing the parameter manager's
9  * owner's parameter dialog script.
10  */
11 
12 #ifndef __VOP_PARMDSMICRONODE_H_INCLUDED__
13 #define __VOP_PARMDSMICRONODE_H_INCLUDED__
14 
15 #include "VOP_API.h"
16 #include <DEP/DEP_MicroNode.h>
17 
19 
21 {
22 public:
23  explicit VOP_ParmDSMicroNode(
24  VOP_ExportedParmsManager &parms_mgr);
25  ~VOP_ParmDSMicroNode() override;
26 
27  const char * className() const override
28  { return "VOP_ParmDSMicroNode"; }
29 
30  void getInputs(DEP_MicroNodeList &inputs) const override;
31  void getOutputs(
32  DEP_MicroNodeList &outputs) const override;
33 
34 private:
35  void getCodeParmInputs_(
36  DEP_MicroNodeList &inputs) const;
37  void getSubnetParmInputs_(
38  DEP_MicroNodeList &inputs) const;
39 
40  VOP_ExportedParmsManager &myParmsManager;
41 };
42 
43 #endif // __VOP_PARMDSMICRONODE_H_INCLUDED__
virtual void getInputs(DEP_MicroNodeList &inputs) const
#define VOP_API
Definition: VOP_API.h:10
const char * className() const override
virtual void getOutputs(DEP_MicroNodeList &outputs) const