Utopia  2
Framework for studying models of complex & adaptive systems.
tags.hh
Go to the documentation of this file.
1 #ifndef UTOPIA_CORE_TAGS_HH
2 #define UTOPIA_CORE_TAGS_HH
3 
4 namespace Utopia {
5 
6 class EmptyTag{};
7 
8 class DefaultTag
9 {
10 
11 public:
13  DefaultTag() : is_tagged(false) { }
14 
16  bool is_tagged;
17 
18 };
19 
20 } // namespace Utopia
21 
22 #endif // UTOPIA_CORE_TAGS_HH
Definition: tags.hh:9
bool is_tagged
Report whether is tagged.
Definition: tags.hh:16
DefaultTag()
Construct DefaultTag.
Definition: tags.hh:13
Definition: tags.hh:6
Definition: agent.hh:11