File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 29
29
CLASS DECLARATION
30
30
******************************************************************************/
31
31
32
- class CloudWrapperBaseInterface {
33
- public:
34
- virtual bool isChangedLocally () = 0;
35
- };
32
+ // class CloudWrapperBaseInterface {
33
+ // public:
34
+ // virtual bool isChangedLocally() = 0;
35
+ // };
36
36
37
- class CloudWrapperBase : public Property , public CloudWrapperBaseInterface {
37
+ class CloudWrapperBase : public Property {
38
38
public:
39
39
virtual bool isChangedLocally () = 0;
40
40
};
41
41
42
42
template <typename T>
43
- class CloudWrapperProperty : public PropertyPrimitive <T>, public CloudWrapperBaseInterface {
43
+ class CloudWrapperProperty : public CloudWrapperBase {
44
44
public:
45
45
CloudWrapperProperty (T& value)
46
46
: PropertyPrimitive<T>(value), _primitive_value(value) { }
You can’t perform that action at this time.
0 commit comments