source: trunk/ETSI-Testsuites/ETSI_auto_IOT/adapter/src/Ports/MessagesIdentifiers.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: 1.3 KB
Line 
1#include "MessagesIdentifiers.h"
2
3const char* MessagesIdentifiers::GeneralConfigurationReq = "GeneralConfigurationReq";
4const char* MessagesIdentifiers::GeneralConfigurationRsp = "GeneralConfigurationRsp";
5const char* MessagesIdentifiers::SetFilterReq = "SetFilterReq";
6const char* MessagesIdentifiers::SetFilterRsp = "SetFilterRsp";
7const char* MessagesIdentifiers::StartTrafficCaptureReq = "StartTrafficCaptureReq";
8const char* MessagesIdentifiers::StartTrafficCaptureRsp = "StartTrafficCaptureRsp";
9const char* MessagesIdentifiers::StopTrafficCaptureReq = "StopTrafficCaptureReq";
10const char* MessagesIdentifiers::StopTrafficCaptureRsp = "StopTrafficCaptureRsp";
11const char* MessagesIdentifiers::EquipmentOperationReq = "EquipmentOperationReq";
12const char* MessagesIdentifiers::EquipmentOperationRsp = "EquipmentOperationRsp";
13const int MessagesIdentifiers::Size = 10;
14 
15const char* MessagesIdentifiers::Messages[] = {
16  "GeneralConfigurationReq",  //0
17  "GeneralConfigurationRsp",  //1
18  "SetFilterReq",             //2
19  "SetFilterRsp",             //3
20  "StartTrafficCaptureReq",   //4
21  "StartTrafficCaptureRsp",   //5
22  "StopTrafficCaptureReq",    //6
23  "StopTrafficCaptureRsp",    //7
24  "EquipmentOperationReq",    //8
25  "EquipmentOperationRsp",    //9
26  ""
27};
28
Note: See TracBrowser for help on using the repository browser.