Skip to content

Commit

Permalink
fixup! add dds serializable class for presets
Browse files Browse the repository at this point in the history
  • Loading branch information
maloel committed Jun 27, 2024
1 parent 66de311 commit 6aea295
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/dds/rsdds-serializable.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ class dds_serializable : public serializable_interface

protected:
virtual device_interface const & get_serializable_device() const = 0;
virtual std::vector< sensor_interface * > get_serializable_sensors() const = 0;
virtual std::vector< sensor_interface * > get_serializable_sensors() = 0;
virtual std::vector< sensor_interface const * > get_serializable_sensors() const = 0;
};


Expand Down

0 comments on commit 6aea295

Please sign in to comment.