source: trunk/ETSI-Testsuites/ETSI_auto_IOT/adapter/src/UpperTestAdapter/TriggerCommandsOffLine/Default.cpp @ 22

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
7using namespace std;
8using namespace boost;
9
10namespace UpperTestAdapter {
11 
12namespace Processors {
13 
14namespace TriggerCommandsOffLine {
15 
16Default::Default()
17{
18}
19
20Default::~Default()
21{
22  Logger::Instance().LogInfo("Default::~Default");
23}
24
25int Default::Process(const string &trigger, const vector<string> &parameterList)
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.