// // C++ Interface: string_int // // Description: // // // Author: Børre Gaup , (C) 2008 // // Copyright: See COPYING file that comes with this distribution // // #ifndef STRING_INT_H #define STRING_INT_H using namespace::std; /** @author Børre Gaup */ #include #include #include #include class string_int{ public: string_int(); int add_int_vec(string str); void print_ders(fstream * aff_file, map > ders); void print_affixes(fstream * aff_file); string get_string(int i); ~string_int(); private: map str_int; static int id; string compoundpermitflag; string compoundbegin; string compoundmiddle; string compoundend; string compoundforbidflag; string onlyincompound; }; #endif