SourceXtractorPlusPlus  0.8
Please provide a description of the project.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
PyId.h
Go to the documentation of this file.
1 
17 /*
18  * @file PyId.h
19  * @author Alejandro Alvarez Ayllon
20  */
21 
22 #ifndef _SEIMPLEMENTATION_PYID_H
23 #define _SEIMPLEMENTATION_PYID_H
24 
25 #include <atomic>
26 #include <map>
27 
28 namespace SourceXtractor {
29 
30 class PyId {
31 public:
32  PyId();
33  virtual ~PyId();
34 
35  const int id;
36 
37 private:
38  static int s_next_col_id;
39 };
40 
41 }
42 
43 #endif // _SEIMPLEMENTATION_PYID_H
44 
virtual ~PyId()
Definition: PyId.cpp:26
const int id
Definition: PyId.h:35
static int s_next_col_id
Definition: PyId.h:38