summaryrefslogtreecommitdiffstats
path: root/src/uscxml/Message.h
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-02-20 21:55:27 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-02-20 21:55:27 (GMT)
commit47956a35d11495f2ebf6988c7f9d9dffe0bd3a4b (patch)
treeb991daf52ca2051d2e3f89f8143b843bf1318449 /src/uscxml/Message.h
parent8c30e4f664bb8b68f965165035ec29115486b065 (diff)
downloaduscxml-47956a35d11495f2ebf6988c7f9d9dffe0bd3a4b.zip
uscxml-47956a35d11495f2ebf6988c7f9d9dffe0bd3a4b.tar.gz
uscxml-47956a35d11495f2ebf6988c7f9d9dffe0bd3a4b.tar.bz2
Beautified source code again
Diffstat (limited to 'src/uscxml/Message.h')
-rw-r--r--src/uscxml/Message.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/uscxml/Message.h b/src/uscxml/Message.h
index 96ff6c8..a746710 100644
--- a/src/uscxml/Message.h
+++ b/src/uscxml/Message.h
@@ -70,8 +70,8 @@ public:
Arabica::DOM::Node<std::string> dom;
std::string sendid;
std::string invokeid;
- Data data;
-
+ Data data;
+
static Event fromXML(const std::string& xmlString);
Arabica::DOM::Document<std::string> toDocument();
std::string toXMLString() {
@@ -87,8 +87,8 @@ public:
class InvokeRequest : public Event {
public:
- InvokeRequest(Event event) : Event(event) {}
- InvokeRequest() {}
+ InvokeRequest(Event event) : Event(event) {}
+ InvokeRequest() {}
std::string type;
std::string src;
std::map<std::string, std::string> namelist;
@@ -115,8 +115,8 @@ public:
class SendRequest : public Event {
public:
- SendRequest() {}
- SendRequest(Event event) : Event(event) {}
+ SendRequest() {}
+ SendRequest(Event event) : Event(event) {}
std::string target;
std::string type;
uint32_t delayMs;
@@ -134,7 +134,7 @@ public:
// std::cout << ss.str() << std::endl;
return ss.str();
}
-
+
#ifndef SWIGJAVA
friend std::ostream& operator<< (std::ostream& os, const SendRequest& sendReq);
#endif