diff options
author | Marc Lasch <mlasch@mailbox.org> | 2015-08-12 00:09:46 +0200 |
---|---|---|
committer | Marc Lasch <mlasch@mailbox.org> | 2015-08-12 00:09:46 +0200 |
commit | aa80b95124752095533cff761c3287d756ca26cd (patch) | |
tree | e6a71ca06640dc92041b7c34f4e0925cf3030b97 /src/apiHandler.cpp | |
parent | 9f7530aa40c4197a8c1979b37baab43ba2e6205f (diff) | |
download | netgraph-aa80b95124752095533cff761c3287d756ca26cd.tar.gz netgraph-aa80b95124752095533cff761c3287d756ca26cd.zip |
not working now
Diffstat (limited to 'src/apiHandler.cpp')
-rw-r--r-- | src/apiHandler.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/apiHandler.cpp b/src/apiHandler.cpp new file mode 100644 index 0000000..231fd6c --- /dev/null +++ b/src/apiHandler.cpp @@ -0,0 +1,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; + +} |