AnimatLab  2
Test
PyEmbedder.h
1 #pragma once
2 
3 namespace AnimatSimPy
4 {
5 
6  class PyEmbedder
7  {
8  protected:
9  bool m_bPyInit;
10 
11  virtual void InitPython();
12  virtual void FinalizePython();
13 
14  public:
15  PyEmbedder(void);
16  virtual ~PyEmbedder(void);
17 
18  virtual bool ExecutePythonScript(const std::string strPy, bool bThrowError = true);
19  virtual void ResetPython();
20  };
21 
22 }