Nymph  v1.5.2
Flow-Based Data Processing Framework
KTDataPy.hh
Go to the documentation of this file.
1 /*
2  * KTDataPy.hh
3  *
4  * Created on: April 10, 2017
5  * Author: laroque
6  */
7 
8  #ifndef KTDATAPY_HH_
9  #define KTDATAPY_HH_
10 
11 #include "KTData.hh"
12 
14 {
15  using namespace Nymph;
16  using namespace boost::python;
17  class_<KTData, KTDataPtr, boost::noncopyable>("KTData", init<>())
18  .add_property("Counter", &KTData::GetCounter, &KTData::SetCounter)
19  .add_property("LastData", &KTData::GetLastData, &KTData::SetLastData)
20  ;
21 }
22 
23 #endif /* KTDATAPY_HH_ */
void export_DataPy()
Definition: KTDataPy.hh:13