11 lines
98 B
C++
11 lines
98 B
C++
#ifndef FOO_H
|
|
#define FOO_H
|
|
|
|
#include "FooBar.h"
|
|
|
|
class Foo : public FooBar
|
|
{
|
|
};
|
|
|
|
#endif // FOO_H
|