Advertisement
Ilya_Bykonya

Untitled

Apr 18th, 2024
430
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.17 KB | Source Code | 0 0
  1. template<typename Type>
  2. struct IProperty {
  3.     virtual ~IProperty() noexcept = defailt;
  4.     virtual void setValue(const Type& value) = 0;
  5.     virtual Type value() const = 0;
  6. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement