RecoSim  1.0
 All Classes Files Functions Variables Enumerations
task.h
Go to the documentation of this file.
1 
21 #ifndef TASK_H
22 #define TASK_H
23 
24 #include "resources.h"
25 #include <string>
26 #include <map>
27 using namespace std;
28 
29 class Task {
30 
31 private:
32  string taskID;
33  Resources resources;
34 
35 public:
36  Task(string id, map<string, int> _resourceMap) : taskID(id), resources(_resourceMap) {}
37 
38  string get_task_ID(void);
39  Resources get_resources(void);
40 };
41 
42 #endif
Definition: task.h:29
Definition: resources.h:28