33 std::string osc_address;
39 OSCTarget(
const OSCTarget &target)
40 : socket_address(target.socket_address),
41 osc_address(target.osc_address) {
46 const std::string &osc_address)
47 : socket_address(socket_address),
48 osc_address(osc_address) {
51 void operator=(
const OSCTarget &other) {
52 socket_address = other.socket_address;
53 osc_address = other.osc_address;
56 std::string ToString()
const {
57 return socket_address.ToString() + osc_address;
65 friend std::ostream&
operator<<(std::ostream &out,
const OSCTarget &target) {
66 return out << target.ToString();
friend std::ostream & operator<<(std::ostream &out, const OSCTarget &target)
A helper function to write a OSCTarget to an ostream.
Definition OSCTarget.h:65