CARMA C++
Main Page
Related Pages
Namespaces
Classes
Files
Examples
File List
File Members
CatalogEntry.h
Go to the documentation of this file.
1
11
#ifndef CARMA_SERVICES_CATALOGENTRY_H
12
#define CARMA_SERVICES_CATALOGENTRY_H
13
14
#include <string>
15
16
namespace
carma {
17
namespace
services {
18
class
CatalogEntry {
19
public
:
21
CatalogEntry();
22
24
virtual
~CatalogEntry();
25
31
virtual
void
setName(
const
std::string &name);
32
36
virtual
std::string getName()
const
;
37
38
protected
:
39
// variables that will be common to all catalog entries
40
// - name: name of the entry
41
std::string name_;
42
43
};
// end class CatalogEntry
44
};
// end services
45
};
// end carma
46
47
48
#endif
carma
services
CatalogEntry.h
Generated by
1.8.5