Imported Upstream version 0.9.1
[platform/upstream/iotivity.git] / service / soft-sensor-manager / SSMCore / src / Common / ThreadManager.h
index ca6b9b5..9eeed97 100644 (file)
@@ -431,7 +431,7 @@ static const OID OID_IThreadPool = { 0x53855605, 0xb2a0, 0x4a31, { 0xa2, 0x60, 0
 class IThreadPool : public IBase
 {
     public:
-        virtual SSMRESULT createWorkerThread(OUT IWorkerThread **ppWorkerThread) = 0;
+        virtual SSMRESULT createWorkerThread(IWorkerThread **ppWorkerThread) = 0;
         virtual SSMRESULT destroyThreadPool() = 0;
 };
 
@@ -469,7 +469,7 @@ class CThreadPool :
             return SSM_E_NOINTERFACE;
         }
 
-        SSMRESULT createWorkerThread(OUT IWorkerThread **ppWorkerThread);
+        SSMRESULT createWorkerThread(IWorkerThread **ppWorkerThread);
 
         SSMRESULT destroyThreadPool();
 };