-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtry.h
executable file
·44 lines (32 loc) · 810 Bytes
/
try.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// to return a list of strings
#ifndef DPQ_MESSAGE_NAMES_H
#define DPQ_MESSAGE_NAMES_H
#include <iostream>
#include <string>
//**********************
// Class Definition
//**********************
class DpqMessageNames
{
public:
DpqMessageNames(); // constructor - no return type
virtual ~DpqMessageNames();
//**************************************************
//
// Description:
// this method returns the name of the messages
//
// Public Member Functions:
// - name
//
// Protected Member Functions:
//
// Private Member Functions:
//
//****************************************
virtual void name(const std::string& crMessageName);
virtual void output(std::ostream & ros) const;
private:
string m_messageName;
}; //end class DpqMessageName
#endif // DPQ_MESSAGE_NAMES_H