1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
#ifndef ADVERB_H_86F8302F #define ADVERB_H_86F8302F namespace verbly { class adverb { private: int id; public: std::string form; adverb(int id) : id(id) { } }; }; #endif /* end of include guard: ADVERB_H_86F8302F */