Drizzled Public API Documentation

cursor_states_to_dot.cc
1 /*
2  Copyright (C) 2010 Stewart Smith
3 
4  This program is free software; you can redistribute it and/or
5  modify it under the terms of the GNU General Public License
6  as published by the Free Software Foundation; either version 2
7  of the License, or (at your option) any later version.
8 
9  This program is distributed in the hope that it will be useful,
10  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  GNU General Public License for more details.
13 
14  You should have received a copy of the GNU General Public License
15  along with this program; if not, write to the Free Software
16  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 */
18 #include <config.h>
19 #include <iostream>
20 #include <string>
21 #include <map>
22 #include <boost/unordered_map.hpp>
23 
24 using namespace std;
25 
26 typedef multimap<string, string> state_multimap;
27 typedef multimap<string, string>::value_type state_pair;
28 typedef multimap<string, string>::iterator state_multimap_iter;
29 
30 void load_cursor_state_transitions(state_multimap &states);
31 
32 int main(void)
33 {
34  state_multimap states;
35 
36  load_cursor_state_transitions(states);
37 
38  cout << "digraph CursorStates {" << endl;
39 
40  state_multimap_iter it= states.begin();
41 
42  while(it != states.end())
43  {
44  cout << " \"" << (*it).first << "\" -> \"" << (*it).second << "\"\n";
45  it++;
46  }
47 
48  cout << "}" << endl;
49 }