forked from aldebaran/libqi-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyexport.cpp
More file actions
53 lines (46 loc) · 1.13 KB
/
pyexport.cpp
File metadata and controls
53 lines (46 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/*
** Copyright (C) 2020 SoftBank Robotics Europe
** See COPYING for the license
*/
#include <qipython/pyexport.hpp>
#include <qipython/common.hpp>
#include <qipython/pyguard.hpp>
#include <qipython/pytypes.hpp>
#include <qipython/pyapplication.hpp>
#include <qipython/pyfuture.hpp>
#include <qipython/pysession.hpp>
#include <qipython/pyobject.hpp>
#include <qipython/pysignal.hpp>
#include <qipython/pyproperty.hpp>
#include <qipython/pymodule.hpp>
#include <qipython/pyasync.hpp>
#include <qipython/pylog.hpp>
#include <qipython/pypath.hpp>
#include <qipython/pytranslator.hpp>
#include <qipython/pyclock.hpp>
#include <qipython/pystrand.hpp>
namespace py = pybind11;
namespace qi
{
namespace py
{
void exportAll(pybind11::module& module)
{
registerTypes();
GILAcquire lock;
exportFuture(module);
exportSignal(module);
exportProperty(module);
exportObject(module);
exportSession(module);
exportApplication(module);
exportObjectFactory(module);
exportAsync(module);
exportLog(module);
exportPath(module);
exportTranslator(module);
exportStrand(module);
exportClock(module);
}
} // namespace py
} // namespace qi