10 lines
135 B
C++
10 lines
135 B
C++
#ifndef MAIN_H
|
|
#define MAIN_H
|
|
|
|
class Foo {
|
|
public:
|
|
static const int CONST_1;
|
|
static const double CONST_2;
|
|
};
|
|
|
|
#endif /* MAIN_H */
|