11 lines
91 B
C++
11 lines
91 B
C++
#ifndef FOO_H
|
|
#define FOO_H
|
|
|
|
class Foo {
|
|
public:
|
|
void bar();
|
|
int value;
|
|
};
|
|
|
|
#endif
|