Switch to side-by-side view

--- a/src/DAF/CDAP/CDAPMsgLogEntry.h
+++ b/src/DAF/CDAP/CDAPMsgLogEntry.h
@@ -13,20 +13,20 @@
 // along with this program.  If not, see http://www.gnu.org/licenses/.
 // 
 
-#ifndef MESSAGELOGENTRY_H_
+#ifndef MESSAGELOGENTRY_H_
 #define MESSAGELOGENTRY_H_
 
 //Standard libraries
 #include <omnetpp.h>
 
-const int UNINIT_INVOKEID = -1;
-
-class CDAPMsgLogEntry {
+const int UNINIT_INVOKEID = -1;
+
+class CDAPMsgLogEntry {
   public:
     enum CDAPMsgStatus {UNKNOWN, REQUESTED, RESPONDED};
 
-    //(De)Constructor
-    CDAPMsgLogEntry();
+    //(De)Constructor
+    CDAPMsgLogEntry();
     virtual ~CDAPMsgLogEntry();
 
     std::string info() const;
@@ -42,7 +42,7 @@
     void setRequestedAt(const simtime_t& requestedAt);
     const simtime_t& getRespondedAt() const;
     void setRespondedAt(const simtime_t& respondedAt);
-
+
   private:
     //FIXME: Vesely - Convert to enum
     std::string opCode;
@@ -50,10 +50,10 @@
     CDAPMsgStatus msgStatus;
     simtime_t requestedAt;
     simtime_t respondedAt;
-
-};
+
+};
 
 //Free function
 std::ostream& operator<< (std::ostream& os, const CDAPMsgLogEntry& mle);
-
-#endif /* MESSAGELOGENTRY_H_ */
+
+#endif /* MESSAGELOGENTRY_H_ */