owlps/GuiNuMo-server/test.cc

26 lines
414 B
C++

#include <iostream>
#include <fstream>
#include <string>
#include "referencepoint.hh"
#include "measurement.hh"
#include "accesspoint.hh"
#include "clientinfo.hh"
#include "server.hh"
#include "point.hh"
using namespace std;
using std::string;
#define BUFFER_LENGTH 1024
int main(int argc, char ** argv)
{
ofstream output_file;
string read_file;
Server my_server;
my_server.radar_exp();
return 0;
}