We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67cbcbe commit 2a26e70Copy full SHA for 2a26e70
1 file changed
include/geode/stochastic/spatial/object_sets.hpp
@@ -50,6 +50,10 @@ namespace geode
50
OPENGEODE_DISABLE_COPY( ObjectSets );
51
52
public:
53
+ ObjectSets() noexcept = default;
54
+ ObjectSets( ObjectSets&& ) noexcept = default;
55
+ ObjectSets& operator=( ObjectSets&& ) noexcept = default;
56
+
57
const ObjectSet< Type >& get_set( const uuid& set_id ) const;
58
const Type& get_object( const ObjectId& object_id ) const;
59
std::vector< ObjectId > get_all_object() const;
0 commit comments