summary refs log tree commit diff stats
path: root/adjective.h
blob: 9d7883fa790c38982a0c121f2e6db3325ef4256e (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 form;
      
      adjective(int id) : id(id)
      {
        
      }
  };
  
};

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