Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[mc] Remove mc_object_info.cpp
[simgrid.git] / src / mc / Frame.hpp
index bdbbbca..734b933 100644 (file)
@@ -11,6 +11,8 @@
 
 #include "mc_forward.h"
 #include "mc_location.h"
+#include "mc/Variable.hpp"
+#include "mc/Frame.hpp"
 
 namespace simgrid {
 namespace mc {
@@ -31,6 +33,17 @@ public:
   simgrid::mc::ObjectInformation* object_info;
 };
 
+inline
+Frame::Frame()
+{
+  this->tag = 0;
+  this->low_pc = nullptr;
+  this->high_pc = nullptr;
+  this->id = 0;
+  this->abstract_origin_id = 0;
+  this->object_info = nullptr;
+}
+
 }
 }