Class documentation of Concepts

Loading...
Searching...
No Matches
graphicspy.hh
1#ifndef graphicspy_hh
2#define graphicspy_hh
3
4#include "boost/python.hpp"
5#include "boost/numpy.hpp"
6
8
9namespace bp = boost::python;
10namespace bn = boost::numpy;
11
12namespace graphicspy{
13
15
16 public:
17
18 template<class T>
20
21 bp::dict getData();
22
23 protected:
24
25 template<class T>
26 void addSpace_(const concepts::Space<T> & spc);
27
28 bp::dict dictionary;
29
30 };
31
32 bp::dict getPythonGraphics(const concepts::Space<concepts::Real> & spc);
33
34}
35
36
37
38#endif