Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
mc: move some files related to ELF, DWARF or unwind reading into their own directory
[simgrid.git] / src / mc / inspect / Frame.hpp
similarity index 84%
rename from src/mc/Frame.hpp
rename to src/mc/inspect/Frame.hpp
index e6d9e0d..0d653ed 100644 (file)
@@ -7,15 +7,15 @@
 #ifndef SIMGRID_MC_FRAME_HPP
 #define SIMGRID_MC_FRAME_HPP
 
 #ifndef SIMGRID_MC_FRAME_HPP
 #define SIMGRID_MC_FRAME_HPP
 
-#include <string>
 #include <cstdint>
 #include <cstdint>
+#include <string>
 
 #include "xbt/base.h"
 #include "xbt/range.hpp"
 
 
 #include "xbt/base.h"
 #include "xbt/range.hpp"
 
+#include "src/mc/inspect/LocationList.hpp"
+#include "src/mc/inspect/Variable.hpp"
 #include "src/mc/mc_forward.hpp"
 #include "src/mc/mc_forward.hpp"
-#include "src/mc/LocationList.hpp"
-#include "src/mc/Variable.hpp"
 
 namespace simgrid {
 namespace mc {
 
 namespace simgrid {
 namespace mc {
@@ -59,17 +59,16 @@ public:
   void remove_variable(char* name);
 };
 
   void remove_variable(char* name);
 };
 
-inline
-Frame::Frame()
+inline Frame::Frame()
 {
 {
-  this->tag = 0;
-  this->range = {0, 0};
-  this->id = 0;
+  this->tag                = 0;
+  this->range              = {0, 0};
+  this->id                 = 0;
   this->abstract_origin_id = 0;
   this->abstract_origin_id = 0;
-  this->object_info = nullptr;
+  this->object_info        = nullptr;
 }
 
 }
 
-}
-}
+} // namespace mc
+} // namespace simgrid
 
 #endif
 
 #endif