SourceXtractorPlusPlus 1.0.3
SourceXtractor++, the next generation SExtractor
Loading...
Searching...
No Matches
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
28namespace SourceXtractor {
29
30class PyId {
31public:
32 PyId();
33 virtual ~PyId();
34
35 const int id;
36
37private:
38 static int s_next_col_id;
39};
40
41}
42
43#endif // _SEIMPLEMENTATION_PYID_H
44
const int id
Definition PyId.h:35
static int s_next_col_id
Definition PyId.h:38
virtual ~PyId()
Definition PyId.cpp:26