Mercurial > hg > svcore
comparison data/osc/OSCMessage.h @ 980:6e6da0636e5e tonioni
Merge from default branch
author | Chris Cannam |
---|---|
date | Tue, 09 Sep 2014 16:36:21 +0100 |
parents | a0573186435e |
children | ad5f892c0c4d |
comparison
equal
deleted
inserted
replaced
954:35b05cac32d0 | 980:6e6da0636e5e |
---|---|
30 #include "base/Debug.h" | 30 #include "base/Debug.h" |
31 | 31 |
32 class OSCMessage | 32 class OSCMessage |
33 { | 33 { |
34 public: | 34 public: |
35 OSCMessage() { } | 35 OSCMessage() : m_target(0), m_targetData(0) { } |
36 ~OSCMessage(); | 36 ~OSCMessage(); |
37 | 37 |
38 void setTarget(const int &target) { m_target = target; } | 38 void setTarget(const int &target) { m_target = target; } |
39 int getTarget() const { return m_target; } | 39 int getTarget() const { return m_target; } |
40 | 40 |