-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathagent.h
More file actions
42 lines (38 loc) · 805 Bytes
/
agent.h
File metadata and controls
42 lines (38 loc) · 805 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*!
* \file agent.h
* \author Simon Coakley
* \date 2012
* \copyright Copyright (c) 2012 University of Sheffield
* \brief Header file for agent
*/
#ifndef AGENT_H_
#define AGENT_H_
#include <QStringList>
class Agent {
public:
Agent() {
agentType = "";
x = 0.0;
y = 0.0;
z = 0.0;
shapeDimension = 0.0;
shapeDimensionY = 0.0;
shapeDimensionZ = 0.0;
conditionVariable = 0.0;
isEnvironment = false;
isPicked = false;
}
QString agentType;
QStringList tags;
QStringList values;
double x;
double y;
double z;
double shapeDimension;
double shapeDimensionY;
double shapeDimensionZ;
double conditionVariable;
bool isEnvironment;
bool isPicked;
};
#endif // AGENT_H_