re-locate log file
[trackerpp.git] / main.cpp
index e8999d7..1dbaef5 100644 (file)
--- a/main.cpp
+++ b/main.cpp
@@ -1,7 +1,7 @@
 #include<iostream>
-#include "src/Engine.h"
+#include "Engine.h"
 #include <string>
-#include "src/Logger.h"
+#include "Logger.h"
 
 #define TAG "Main"
 
@@ -10,13 +10,11 @@ using namespace suanzi;
 class Callback : public EngineObserver
 {
     void onPersonIn(Person& p){
-//        std::cout << "onPersonIn "  << p.toString() << std::endl;
         LOG_DEBUG(TAG, "OnPersonIn " << p.toString())
 
     };
 
     void onPersonOut(Person& p) {
-//        std::cout << "onPersonOut " << std::endl;
         LOG_DEBUG(TAG, "OnPersonIn " << p.toString())
     };
 };
@@ -25,12 +23,12 @@ class Callback : public EngineObserver
 
 int main(int argc, char* argv[])
 {
-    InitLogger("log4cpp.properties");
+    initLogger("./config/log4cpp.properties");
     LOG_DEBUG(TAG, "==================================");
 
-    Engine* e = Engine::create();
+    EnginePtr e = Engine::create();
     e->addObserver(new Callback());
-    e->setVideoSrc("xxxx");
+    e->setVideoSrc(VideoSrcType::URL, "rtsp://192.168.1.75:554/stream1");
     e->start();
 
     e->destroy();