Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Continue to reorganize instr
[simgrid.git] / src / instr / instr_paje_values.hpp
1 /* Copyright (c) 2010-2017. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #ifndef INSTR_PAJE_VALUES_HPP
7 #define INSTR_PAJE_VALUES_HPP
8
9 #include "src/instr/instr_private.hpp"
10 #include <string>
11
12 namespace simgrid {
13 namespace instr {
14
15 class EntityValue {
16   long long int id_;
17   std::string name_;
18   std::string color_;
19   Type* father_;
20
21 public:
22   explicit EntityValue(std::string name, std::string color, Type* father);
23   ~EntityValue() = default;
24   const char* getCname() { return name_.c_str(); }
25   long long int getId() { return id_; }
26   void print();
27 };
28 }
29 }
30
31 #endif