-rw-r--r-- | libopie/pim/DESIGN | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/libopie/pim/DESIGN b/libopie/pim/DESIGN index d878f45..4def7b9 100644 --- a/libopie/pim/DESIGN +++ b/libopie/pim/DESIGN @@ -34,17 +34,29 @@ not to use simple inheretance is that we can specialise quite easy. For example we have OTodoAccess : public OPimAccessTemplate<OTodo>; the we would do OTodoAccess::List list = otodoAccess.all(); OTodoAccess::List::Iterator it; for( it = list.begin(); it != list.end(); ++it ); as you can see from here it just behaves like you expect from Qt or STL. The kewlest thing is that List and List::Iterator is free to use if you want to implement your own OPimAccessTemplate. You just have to sub class it and voila you're done Hope you enjoy using OPIE PIM -regards Holger 'zecke' Freyther
\ No newline at end of file +regards Holger 'zecke' Freyther + + +Comment by Stefan Eilers: + +The opimaccesstemplate defines "SortOrder": +I think sortorder is the wrong name for the meaning of it and +it should be defined by the childs of opimaccesstemplate (every +implementation may use different values for this..) + + + + |