Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- template<typename Type>
- struct IProperty {
- virtual ~IProperty() noexcept = defailt;
- virtual void setValue(const Type& value) = 0;
- virtual Type value() const = 0;
- };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement