AnyCAD C++ API  2018
 全部  命名空间 文件 函数 变量 类型定义 枚举 枚举值 友元 宏定义 
APIParameterPackage.h
浏览该文件的文档.
1 //Public API. Powered by AnyCAD.
2 
3 #ifndef _APIParameterPackage_H_
4 #define _APIParameterPackage_H_
5 
6 #include "APIObjectDef.h"
7 
8 #include "APIObject.h"
9 
10 namespace AnyCAD{ namespace API
11 {
12  class OptionListSet;
13  class ParameterValueSet;
14  class ParameterUISet;
23  : public Object
24  {
26  public:
31  ParameterValueSet GetValueSet () const;
36  void SetValueSet (const ParameterValueSet& pVals) ;
41  ParameterUISet GetUISet () const;
46  void SetUISet (const ParameterUISet& pUIs) ;
51  OptionListSet GetOptions () const;
56  void SetOptions (const OptionListSet& options) ;
62  static ParameterPackage Load (const Path& fileName) ;
69  static bool Save (const ParameterPackage& paramPackage, const Path& fileName) ;
70  };//ParameterPackage;
71 }}//API
72 
73 #endif //_APIParameterPackage_H_
#define AnyPlatformAPI_API
Definition: AnyPlatformAPI.h:8
Group of ParameterValue with unique id.
Definition: APIParameterValueSet.h:20
A group of parameter UIs.
Definition: APIParameterUISet.h:20
the option ui set.
Definition: APIOptionListSet.h:21
平台基类
Definition: APIObject.h:17
TODO:
Definition: APIPath.h:16
A group of parameter UIs.
Definition: APIParameterPackage.h:22
#define DECLARE_APISUPER(className, super)
Definition: APIObjectDef.h:33