summary refs log tree commit diff stats
path: root/adjective.h
blob: 58c490e362189c679bef40b8ac5e9c5aad3757ce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef ADJECTIVE_H_87B3FB75
#define ADJECTIVE_H_87B3FB75

namespace verbly {
  
  class adjective {
    private:
      int id;
      
    public:
      std::string value;
      
      adjective(int id) : id(id)
      {
        
      }
  };
  
};

#endif /* end of include guard: ADJECTIVE_H_87B3FB75 */