TM2IN  0.5.1
json.h
Go to the documentation of this file.
1 #ifndef JSONMAKER_H_INCLUDED
2 #define JSONMAKER_H_INCLUDED
3 
4 #include <vector>
5 #include <string>
6 
8 
9 using namespace std;
10 
11 namespace TM2IN{
12  namespace io {
17  int exportRoomBoundaryJSON(string output_file, vector<Room *> &rooms, int boundary_mode=0);
18  }
19 };
20 
21 #endif // JSONMAKER_H_INCLUDED
Definition: collinear.cpp:10
int exportRoomBoundaryJSON(string output_file, vector< Room * > &rooms, int boundary_mode)
Export a vector of Room to Json format.
Definition: json.cpp:10