소스 검색

FIX: PluginFramework: adding explicit values for enum types

Sascha Zelzer 15 년 전
부모
커밋
a321090e3b
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      Libs/PluginFramework/ctkPlugin.h

+ 3 - 3
Libs/PluginFramework/ctkPlugin.h

@@ -182,7 +182,7 @@ public:
      *
      * @see #start(const StartOptions&)
      */
-    START_TRANSIENT,
+    START_TRANSIENT = 0x00000001,
 
     /**
      * The plugin start operation must activate the plugin according to the
@@ -197,7 +197,7 @@ public:
      * @see PluginConstants#PLUGIN_ACTIVATIONPOLICY
      * @see #start(const StartOptions&)
      */
-    START_ACTIVATION_POLICY
+    START_ACTIVATION_POLICY = 0x00000002
 
   };
 
@@ -221,7 +221,7 @@ public:
      *
      * @see #stop(const StopOptions&)
      */
-    STOP_TRANSIENT
+    STOP_TRANSIENT = 0x00000001
   };
 
   /**