AnimatLab  2
Test
PyClassFactory.h
1 // RbClassFactory.h: interface for the RbClassFactory class.
2 //
4 
5 #pragma once
6 
7 
8 namespace AnimatSimPy
9 {
10 
11  class ANIMATSIMPY_PORT PyClassFactory : public IStdClassFactory
12  {
13  public:
15  virtual ~PyClassFactory();
16 
17  virtual ScriptProcessor *CreateScriptProcessor(std::string strType, bool bThrowError = true);
18  virtual CStdSerialize *CreateObject(std::string strClassType, std::string strObjectType, bool bThrowError = true);
19  };
20 
21 } //RoboticsAnimatSim