Last change
on this file since 22 was
22,
checked in by rings, 14 years ago
|
|
-
Property svn:executable set to
*
|
File size:
637 bytes
|
Line | |
---|
1 | #include "Default.h"
|
---|
2 | #include <sstream>
|
---|
3 | #include <iostream>
|
---|
4 |
|
---|
5 | #include "Logger/Logger.h"
|
---|
6 |
|
---|
7 | using namespace std;
|
---|
8 | using namespace boost;
|
---|
9 |
|
---|
10 | namespace UpperTestAdapter {
|
---|
11 |
|
---|
12 | namespace Processors {
|
---|
13 |
|
---|
14 | namespace TriggerCommandsOffLine {
|
---|
15 |
|
---|
16 | Default::Default()
|
---|
17 | {
|
---|
18 | }
|
---|
19 |
|
---|
20 | Default::~Default()
|
---|
21 | {
|
---|
22 | Logger::Instance().LogInfo("Default::~Default");
|
---|
23 | }
|
---|
24 |
|
---|
25 | int Default::Process(const string &trigger, const vector<string> ¶meterList)
|
---|
26 | {
|
---|
27 | stringstream ss;
|
---|
28 | // Process the command.
|
---|
29 | ss << "Default::Process: " << trigger;
|
---|
30 | Logger::Instance().LogDebug(ss.str());
|
---|
31 | return 0; // See TTCN-3 FncRetCode
|
---|
32 | }
|
---|
33 |
|
---|
34 | } } } // namespaces
|
---|
35 |
|
---|
Note: See
TracBrowser
for help on using the repository browser.