summaryrefslogtreecommitdiffstats
path: root/include/ingen/AtomReader.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/ingen/AtomReader.hpp')
-rw-r--r--include/ingen/AtomReader.hpp9
1 files changed, 4 insertions, 5 deletions
diff --git a/include/ingen/AtomReader.hpp b/include/ingen/AtomReader.hpp
index c83e7e4a..6e5d83fd 100644
--- a/include/ingen/AtomReader.hpp
+++ b/include/ingen/AtomReader.hpp
@@ -22,9 +22,8 @@
#include "ingen/ingen.h"
#include "lv2/atom/atom.h"
-#include <boost/optional/optional.hpp>
-
#include <cstdint>
+#include <optional>
namespace raul {
class Path;
@@ -58,9 +57,9 @@ public:
private:
void get_atom(const LV2_Atom* in, Atom& out);
- boost::optional<URI> atom_to_uri(const LV2_Atom* atom);
- boost::optional<raul::Path> atom_to_path(const LV2_Atom* atom);
- Resource::Graph atom_to_context(const LV2_Atom* atom);
+ std::optional<URI> atom_to_uri(const LV2_Atom* atom);
+ std::optional<raul::Path> atom_to_path(const LV2_Atom* atom);
+ Resource::Graph atom_to_context(const LV2_Atom* atom);
void get_props(const LV2_Atom_Object* obj,
ingen::Properties& props);