TraceX
 
Loading...
Searching...
No Matches
exigence.h
Go to the documentation of this file.
1#ifndef EXIGENCE_H
2#define EXIGENCE_H
3
4#include <string>
5
7{
8private:
9 std::string id;
10public:
11 Exigence(const std::string& id);
17 std::string getId() const;
23 std::string toString() const;
24
25};
26
27#endif // EXIGENCE_H
std::string getId() const
getId
Definition exigence.cpp:22
Exigence(const std::string &id)
Constructeur pour initialiser une exigence avec un identifiant.
Definition exigence.cpp:10
std::string toString() const
toString
Definition exigence.cpp:39