LRT14  1.0
 All Classes Namespaces Functions Variables Enumerations Enumerator
Fire.h
1 #ifndef FIRE_H_
2 #define FIRE_H_
3 
4 #include "Automation.h"
5 #include "../../ComponentData/LauncherLoaderData.h"
6 #include "../../ComponentData/LauncherAngleData.h"
7 #include "../../ComponentData/CollectorArmData.h"
8 
12 class Fire : public Automation
13 {
14 public:
15  Fire();
16 
17  bool Start();
18  bool Run();
19  bool Abort();
20  void AllocateResources();
21 
22 private:
23  LauncherLoaderData* m_loaderData;
24  LauncherAngleData* m_angleData;
25  CollectorArmData* m_collectorArmData;
26 };
27 
28 #endif