summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--remote-processor/RemoteCommandHandlerTemplate.h8
-rw-r--r--test/test-platform/main.cpp10
2 files changed, 4 insertions, 14 deletions
diff --git a/remote-processor/RemoteCommandHandlerTemplate.h b/remote-processor/RemoteCommandHandlerTemplate.h
index 1f5a9c0..4df64da 100644
--- a/remote-processor/RemoteCommandHandlerTemplate.h
+++ b/remote-processor/RemoteCommandHandlerTemplate.h
@@ -9,10 +9,10 @@ class TRemoteCommandHandlerTemplate : public IRemoteCommandHandler
public:
/** Remote command parser execution return status */
enum CommandStatus {
- EDone, /** Command succeded, return "Done" */
- ESucceeded, /** Command succeeded */
- EFailed, /** Command failed */
- EShowUsage /** Command failed, show usage */
+ EDone, /**< Command succeded, return "Done" */
+ ESucceeded, /**< Command succeeded */
+ EFailed, /**< Command failed */
+ EShowUsage /**< Command failed, show usage */
};
/** Type of the remote command callbacks
diff --git a/test/test-platform/main.cpp b/test/test-platform/main.cpp
index 8a2a07a..953d649 100644
--- a/test/test-platform/main.cpp
+++ b/test/test-platform/main.cpp
@@ -27,20 +27,10 @@
#include <iostream>
#include <cstdlib>
-extern "C" {
#include <semaphore.h>
-}
using namespace std;
-/*#ifdef SIMULATION
-//const char* gpcParameterFrameworkConfigurationFolderPath = "/home/pat/projects/qt/parameter-framework/XML";
-const char* gpcParameterFrameworkConfigurationFolderPath = "/home/pat/Documents/gingerbread/hardware/intel/PRIVATE/parameter-framework/XML";
-#else
-const char* gpcParameterFrameworkConfigurationFolderPath = "/etc/parameter-framework";
-#endif
-*/
-
const int iDefaultPortNumber = 5001;
int main(int argc, char *argv[])