Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[windows] pexport is a dead project anyway
[simgrid.git] / src / mc / Frame.hpp
index bdbbbca..64b4848 100644 (file)
@@ -9,8 +9,12 @@
 
 #include <string>
 
+#include <xbt/base.h>
+
 #include "mc_forward.h"
 #include "mc_location.h"
+#include "mc/Variable.hpp"
+#include "mc/Frame.hpp"
 
 namespace simgrid {
 namespace mc {
@@ -31,6 +35,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;
+}
+
 }
 }