(NOT READY) Update release

This commit is contained in:
Zihan Chen
2017-06-22 23:21:11 -07:00
parent 496e042251
commit a3671237eb
22 changed files with 832 additions and 604 deletions
+5 -5
View File
@@ -24,10 +24,10 @@ class Category : public Object, public ICategory
friend class ViewModel;
friend class Contact;
protected:
ICategory* parent;
WString name;
list::ObservableList<Ptr<ICategory>> folders;
list::ObservableList<Ptr<IContact>> contacts;
ICategory* parent;
WString name;
ObservableList<Ptr<ICategory>> folders;
ObservableList<Ptr<IContact>> contacts;
public:
Category(ICategory* _parent)
@@ -150,7 +150,7 @@ public:
class RootCategory : public Object, public ICategory
{
protected:
list::ObservableList<Ptr<ICategory>> folders;
ObservableList<Ptr<ICategory>> folders;
public:
RootCategory()
@@ -37,8 +37,8 @@
prop Parent : ICategory* {const, not observe}
prop Name : string {const, not observe}
prop Image : presentation::GuiImageData^ {const, not observe}
prop Folders : ObservableList^ {const, not observe}
prop Contacts : ObservableList^ {const, not observe}
prop Folders : observe ICategory^[] {const, not observe}
prop Contacts : observe IContact^[] {const, not observe}
}
interface IViewModel