Scheduler
xmlTaskSet.h
Go to the documentation of this file.
1 
10 #ifndef XML_TASK_SET_H
11 #define XML_TASK_SET_H
12 
13 #include <vector>
14 #include <memory>
15 
16 #include <tinyxml2/tinyxml2.h>
17 
18 namespace Scheduler
19 {
20 
21 class Process;
22 
24 {
25 public:
26  std::shared_ptr<std::vector<std::shared_ptr<Process>>>
28 private:
29  void getTaskData(tinyxml2::XMLElement *elem);
30  std::shared_ptr<std::vector<std::shared_ptr<Process>>> taskVector;
31 };
32 
33 }
34 #endif
35 
36 
std::shared_ptr< std::vector< std::shared_ptr< Process > > > getRealTimeTaskSetFromXml(std::string filename)
Definition: xmlTaskSet.cpp:28
string filename
Definition: aging.py:5