summary refs log tree commit diff stats
path: root/adverb.h
blob: 6d2466eb5948915e57e0b0c63f062f262fda91ad (plain) (blame)
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 */