Remove warnings
[anna.git] / include / anna / comm / Transport.hpp
index 0cd74a6..6b6b24c 100644 (file)
@@ -42,6 +42,14 @@ class Message;
    sincronizarse nunca mas.
 */
 class Transport {
+
+  static const int MinOverQuotaSize = 512;
+
+  int a_overQuotaSize;
+  Message* a_inputMessage;
+
+  static Message* nullInputMessage() throw(RuntimeException);
+
 public:
   /**
     Maximum number of bytes kept by each ClientSocket without identifying
@@ -171,13 +179,8 @@ protected:
   void setInputMessage(Message* inputMessage) throw() { a_inputMessage = inputMessage; }
 
 private:
-  static const int MinOverQuotaSize = 512;
 
-  int a_overQuotaSize;
-  Message* a_inputMessage;
   bool a_enableTimeout;
-
-  static Message* nullInputMessage() throw(RuntimeException);
 };
 
 }