// // C++ Interface: string_intset // // Description: // // // Author: Børre Gaup , (C) 2008 // // Copyright: See COPYING file that comes with this distribution // // #ifndef STRING_INTSET_H #define STRING_INTSET_H using namespace::std; #include #include #include #include /** @author Børre Gaup */ class string_intset{ public: string_intset(); void add_index_map(string str, int aff_index); void dicder(map< set, set > * der_compound); void print_dic(fstream * file); void print_der(string file_name); map > get_map(); void clear(); set< set > get_intset(); ~string_intset(); private: map > str_intset; }; #endif