This commit is contained in:
emeric
2014-04-07 22:53:26 +02:00
parent 02959ee66f
commit c6a24d7b46
3 changed files with 21 additions and 9 deletions
+4 -2
View File
@@ -9,6 +9,8 @@
#include "WebServerService.hpp"
#include "RemoteServerService.hpp"
void toto(int argc, char* argv[]);
int main(int argc, char* argv[])
{
@@ -22,9 +24,9 @@ int main(int argc, char* argv[])
Av::AvInit();
Transcode::AvConvTranscoder::init();
serviceManager.startService( std::make_shared<DatabaseRefreshService>( "test.db" ) );
// serviceManager.startService( std::make_shared<DatabaseRefreshService>( "test.db" ) );
serviceManager.startService( std::make_shared<WebServerService>(argc, argv) );
serviceManager.startService( std::make_shared<RemoteServerService>( Remote::Server::Server::endpoint_type() ) );
// serviceManager.startService( std::make_shared<RemoteServerService>( Remote::Server::Server::endpoint_type() ) );
serviceManager.run();