HowManyAreAnalyzed(): use status_user_agent to report progress
[linguistica.git] / AffixLocation.h
blobb0b569a917799604068e52e4a7c87c17a136ad19
1 // Affix position: initial (prefix) or final (suffix)
2 // Copyright © 2009 The University of Chicago
3 #ifndef AFFIXLOCATION_H
4 #define AFFIXLOCATION_H
6 enum eAffixLocation {
7 WORD_FINAL,
8 STEM_FINAL,
9 STEM_INITIAL,
10 WORD_INITIAL
13 inline bool is_initial(enum eAffixLocation l)
14 { return l == STEM_INITIAL || l == WORD_INITIAL; }
16 #endif // AFFIXLOCATION_H