summaryrefslogtreecommitdiffstats
path: root/include/ingen/Message.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/ingen/Message.hpp')
-rw-r--r--include/ingen/Message.hpp35
1 files changed, 17 insertions, 18 deletions
diff --git a/include/ingen/Message.hpp b/include/ingen/Message.hpp
index ca618514..de62f459 100644
--- a/include/ingen/Message.hpp
+++ b/include/ingen/Message.hpp
@@ -24,10 +24,9 @@
#include "ingen/URI.hpp"
#include "raul/Path.hpp"
-#include <boost/variant/variant.hpp>
-
#include <cstdint>
#include <string>
+#include <variant>
namespace ingen {
@@ -121,22 +120,22 @@ struct Undo {
int32_t seq;
};
-using Message = boost::variant<BundleBegin,
- BundleEnd,
- Connect,
- Copy,
- Del,
- Delta,
- Disconnect,
- DisconnectAll,
- Error,
- Get,
- Move,
- Put,
- Redo,
- Response,
- SetProperty,
- Undo>;
+using Message = std::variant<BundleBegin,
+ BundleEnd,
+ Connect,
+ Copy,
+ Del,
+ Delta,
+ Disconnect,
+ DisconnectAll,
+ Error,
+ Get,
+ Move,
+ Put,
+ Redo,
+ Response,
+ SetProperty,
+ Undo>;
} // namespace ingen