summaryrefslogtreecommitdiff
path: root/src/apiHandler.cpp
blob: 231fd6c2c812c52a10e6352a21a9be4a45830dbe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "apiHandler.h"

using namespace std;

apiHandler::apiHandler(struct mg_connection *conn) {
	MyConnection = conn;
}

apiHandler::~apiHandler(void) { }

int apiHandler::processRequest(void) {

		return MG_FALSE;

}