-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 | |||
@@ -38,13 +38,25 @@ OTodoAccess::List::Iterator it; | |||
38 | for( it = list.begin(); it != list.end(); ++it ); | 38 | for( it = list.begin(); it != list.end(); ++it ); |
39 | 39 | ||
40 | 40 | ||
41 | as you can see from here it just behaves like you expect from Qt or STL. | 41 | as you can see from here it just behaves like you expect from Qt or STL. |
42 | 42 | ||
43 | The kewlest thing is that List and List::Iterator is free to use if you | 43 | The kewlest thing is that List and List::Iterator is free to use if you |
44 | want to implement your own OPimAccessTemplate. | 44 | want to implement your own OPimAccessTemplate. |
45 | You just have to sub class it and voila you're done | 45 | You just have to sub class it and voila you're done |
46 | 46 | ||
47 | 47 | ||
48 | Hope you enjoy using OPIE PIM | 48 | Hope you enjoy using OPIE PIM |
49 | 49 | ||
50 | regards Holger 'zecke' Freyther \ No newline at end of file | 50 | regards Holger 'zecke' Freyther |
51 | |||
52 | |||
53 | Comment by Stefan Eilers: | ||
54 | |||
55 | The opimaccesstemplate defines "SortOrder": | ||
56 | I think sortorder is the wrong name for the meaning of it and | ||
57 | it should be defined by the childs of opimaccesstemplate (every | ||
58 | implementation may use different values for this..) | ||
59 | |||
60 | |||
61 | |||
62 | |||