6 lines
104 B
C++
6 lines
104 B
C++
|
class ClassWithClassConstant {
|
||
|
public:
|
||
|
static int const Class_Constant = 0;
|
||
|
};
|
||
|
|