Skip to content

Commit 3fc87b6

Browse files
[TMP] testing codesize
1 parent f6cdd95 commit 3fc87b6

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, public CloudWrapperBaseInterface {
37+
class CloudWrapperBase : public Property {
3838
public:
3939
virtual bool isChangedLocally() = 0;
4040
};
4141

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

0 commit comments

Comments
 (0)