2 #ifndef RICOH_CAMERA_SDK_CAMERA_DEVICE_SETTING_HPP_ 3 #define RICOH_CAMERA_SDK_CAMERA_DEVICE_SETTING_HPP_ 11 namespace CameraController {
13 class CameraDeviceSettingValue;
31 virtual const std::string& getName()
const;
45 virtual void setValue(std::unique_ptr<CameraDeviceSettingValue>&& value);
47 virtual std::string toString()
const;
54 std::unique_ptr<CameraDeviceSettingValue> value_;
67 virtual std::string toString()
const = 0;
73 #endif // RICOH_CAMERA_SDK_CAMERA_DEVICE_SETTING_HPP_ Definition: camera_device.hpp:13
This class is base for value of camera settings.
Definition: camera_device_setting.hpp:60
#define RCSDK_API
Definition: export.hpp:17
This class is base class for camera device settings. Sub classes of this class are used to handle cam...
Definition: camera_device_setting.hpp:19