edits
[iotcloud.git] / version2 / src / C / Error.h
index ff8eb8de7ddefc0ce2ccf39b88727ac325357c95..44e2845bb69fc0d2badddda559491d35d56696f2 100644 (file)
@@ -20,9 +20,9 @@ public:
 #define ServerException_TypeSalt 3
 
 class ServerException {
-public:
-       ServerException(const char *msg, char _type) : type(_type) {}
-       char getType();
        char type;
+ public:
+  ServerException(const char *msg, char _type) : type(_type) {}
+       char getType() {return type;}
 };
 #endif