Created UserInterface namespace, WebServerService -> UserInterfaceService.

This commit is contained in:
emeric
2014-04-12 21:28:20 +02:00
parent 788a7638bc
commit 298f6fb885
46 changed files with 291 additions and 167 deletions
+2 -3
View File
@@ -2,6 +2,7 @@
#define REMOTE_SERVER_HPP
#include <boost/asio.hpp>
#include <boost/filesystem.hpp>
#include "Connection.hpp"
#include "ConnectionManager.hpp"
@@ -9,7 +10,6 @@
#include "RequestHandler.hpp"
namespace Remote {
namespace Server {
class Server
@@ -22,7 +22,7 @@ class Server
typedef boost::asio::ip::tcp::endpoint endpoint_type;
// Serve up data from the given database
Server(const endpoint_type& endpoint);
Server(const endpoint_type& endpoint, boost::filesystem::path dbPath);
// Run the server's io_service loop.
void run();
@@ -50,7 +50,6 @@ class Server
};
} // namespace Server
} // namespace Remote
#endif