Skip to content

Commit b283371

Browse files
Revert "[TMP] testing codesize"
This reverts commit 3fc87b6.
1 parent 3fc87b6 commit b283371

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/property/types/CloudWrapperBase.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,18 +29,18 @@
2929
CLASS DECLARATION
3030
******************************************************************************/
3131

32-
// class CloudWrapperBaseInterface {
33-
// public:
34-
// virtual bool isChangedLocally() = 0;
35-
// };
32+
class CloudWrapperBaseInterface {
33+
public:
34+
virtual bool isChangedLocally() = 0;
35+
};
3636

37-
class CloudWrapperBase : public Property {
37+
class CloudWrapperBase : public Property, public CloudWrapperBaseInterface {
3838
public:
3939
virtual bool isChangedLocally() = 0;
4040
};
4141

4242
template<typename T>
43-
class CloudWrapperProperty : public CloudWrapperBase {
43+
class CloudWrapperProperty : public PropertyPrimitive<T>, public CloudWrapperBaseInterface {
4444
public:
4545
CloudWrapperProperty(T& value)
4646
: PropertyPrimitive<T>(value), _primitive_value(value) { }

0 commit comments

Comments
 (0)