00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #include <config.h>
00019 #include <iostream>
00020 #include <string>
00021 #include <map>
00022 #include <boost/unordered_map.hpp>
00023
00024 using namespace std;
00025
00026 typedef multimap<string, string> state_multimap;
00027 typedef multimap<string, string>::value_type state_pair;
00028 typedef multimap<string, string>::iterator state_multimap_iter;
00029
00030 void load_cursor_state_transitions(state_multimap &states);
00031
00032 int main(void)
00033 {
00034 state_multimap states;
00035
00036 load_cursor_state_transitions(states);
00037
00038 cout << "digraph CursorStates {" << endl;
00039
00040 state_multimap_iter it= states.begin();
00041
00042 while(it != states.end())
00043 {
00044 cout << " \"" << (*it).first << "\" -> \"" << (*it).second << "\"\n";
00045 it++;
00046 }
00047
00048 cout << "}" << endl;
00049 }