summaryrefslogtreecommitdiffstats
path: root/src/uscxml/Message.h
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-03-27 16:23:58 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-03-27 16:23:58 (GMT)
commitf11664454a92cd6df193f665fa8d7f2f81d2e06d (patch)
treefcc04bc9f43daac54a95e9dc8942262b995689f9 /src/uscxml/Message.h
parentc0e29f9d4574be340d23c88605bf8868b166f718 (diff)
downloaduscxml-f11664454a92cd6df193f665fa8d7f2f81d2e06d.zip
uscxml-f11664454a92cd6df193f665fa8d7f2f81d2e06d.tar.gz
uscxml-f11664454a92cd6df193f665fa8d7f2f81d2e06d.tar.bz2
Some final touches on PHP API
Diffstat (limited to 'src/uscxml/Message.h')
-rw-r--r--src/uscxml/Message.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/uscxml/Message.h b/src/uscxml/Message.h
index 006d515..2a49264 100644
--- a/src/uscxml/Message.h
+++ b/src/uscxml/Message.h
@@ -155,7 +155,7 @@ public:
/// TODO: Do we want to set namelist and params as well?
std::map<std::string, std::string> getNameList() { return namelist; }
- virtual const std::vector<std::string> getNameListKeys() {
+ const std::vector<std::string> getNameListKeys() {
std::set<std::string> keys;
namelist_t::const_iterator nameListIter = namelist.begin();
while (nameListIter != namelist.end()) {
@@ -239,7 +239,7 @@ public:
/// TODO: Do we want to set namelist and params as well?
std::map<std::string, std::string> getNameList() { return namelist; }
- virtual const std::vector<std::string> getNameListKeys() {
+ const std::vector<std::string> getNameListKeys() {
std::set<std::string> keys;
namelist_t::const_iterator nameListIter = namelist.begin();
while (nameListIter != namelist.end()) {