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 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
4242template <typename T>
43- class CloudWrapperProperty : public PropertyPrimitive <T>, public CloudWrapperBaseInterface {
43+ class CloudWrapperProperty : public CloudWrapperBase {
4444public:
4545 CloudWrapperProperty (T& value)
4646 : PropertyPrimitive<T>(value), _primitive_value(value) { }
You can’t perform that action at this time.
0 commit comments