Line | |
---|
1 | #ifndef TriggerCommandsGUI_Default_h
|
---|
2 | #define TriggerCommandsGUI_Default_h
|
---|
3 |
|
---|
4 | #include <boost/shared_ptr.hpp>
|
---|
5 | #include <string>
|
---|
6 | #include <iostream>
|
---|
7 |
|
---|
8 | #include "Processors/TriggerCommandsImpl.h"
|
---|
9 |
|
---|
10 | namespace UpperTestAdapter {
|
---|
11 |
|
---|
12 | namespace Processors {
|
---|
13 |
|
---|
14 | namespace TriggerCommandsGUI {
|
---|
15 |
|
---|
16 | /*! Class Default
|
---|
17 | * \brief This class provides processing for the default Trigger command behavior.
|
---|
18 | */
|
---|
19 | class Default : public UpperTestAdapter::Processors::TriggerCommandsImpl
|
---|
20 | {
|
---|
21 | boost::shared_ptr<EutIPInterface> m_eutIface;
|
---|
22 |
|
---|
23 | public:
|
---|
24 | Default();
|
---|
25 | Default(boost::shared_ptr<EutIPInterface> eutIface);
|
---|
26 | ~Default();
|
---|
27 |
|
---|
28 | public: // Public interface.
|
---|
29 | int Process(const std::string &trigger, const std::vector<std::string> ¶meterList);
|
---|
30 | void SetSuccessor(boost::shared_ptr<UpperTestAdapter::Processors::TriggerCommandsImpl> successor) { };
|
---|
31 | };
|
---|
32 |
|
---|
33 | } } } // namespaces
|
---|
34 |
|
---|
35 | #endif // TriggerCommandsGUI_Default_h
|
---|
36 |
|
---|
Note: See
TracBrowser
for help on using the repository browser.