mirror of
https://github.com/vczh-libraries/Release.git
synced 2026-08-18 01:44:28 +08:00
(NOT READY) Update release
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user