author | zecke <zecke> | 2004-05-21 00:59:53 (UTC) |
---|---|---|
committer | zecke <zecke> | 2004-05-21 00:59:53 (UTC) |
commit | e20a6a2d3be99bdeaf3861f3aed7923e04b7ba04 (patch) (side-by-side diff) | |
tree | 11c8ea83e4a409ca3ea931ac0315f2f2413ac8d8 | |
parent | cc30786a9fa612bb6ad0d19d6564f7e432267f7a (diff) | |
download | opie-e20a6a2d3be99bdeaf3861f3aed7923e04b7ba04.zip opie-e20a6a2d3be99bdeaf3861f3aed7923e04b7ba04.tar.gz opie-e20a6a2d3be99bdeaf3861f3aed7923e04b7ba04.tar.bz2 |
Fix comment
s/plugins/template
-rw-r--r-- | libopie2/opiepim/core/opimaccesstemplate.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libopie2/opiepim/core/opimaccesstemplate.h b/libopie2/opiepim/core/opimaccesstemplate.h index d4c5fbb..e438980 100644 --- a/libopie2/opiepim/core/opimaccesstemplate.h +++ b/libopie2/opiepim/core/opimaccesstemplate.h @@ -19,65 +19,65 @@ _.=:. : :=>`: PARTICULAR PURPOSE. See the GNU ..}^=.= = ; Library General Public License for more ++= -. .` .: details. : = ...= . :.=- -. .:....=;==+<; You should have received a copy of the GNU -_. . . )=. = Library General Public License along with -- :-=` this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef OPIE_PIM_ACCESS_TEMPLATE_H #define OPIE_PIM_ACCESS_TEMPLATE_H #include <qarray.h> #include <opie2/opimrecord.h> #include <opie2/opimaccessbackend.h> #include <opie2/opimrecordlist.h> #include <opie2/opimcache.h> #include <opie2/opimtemplatebase.h> namespace Opie { class OPimAccessTemplatePrivate; /** * Thats the frontend to our OPIE PIM * Library. Either you want to use it's * interface or you want to implement * your own Access lib * Just create a OPimRecord and inherit from - * the plugins + * the templates */ template <class T = OPimRecord > class OPimAccessTemplate : public OTemplateBase<T> { public: enum Access { Random = 0, SortedAccess }; typedef OPimRecordList<T> List; typedef OPimAccessBackend<T> BackEnd; typedef OPimCache<T> Cache; /** * c'tor BackEnd * enum Access a small hint on how to handle the backend */ OPimAccessTemplate( BackEnd* end); virtual ~OPimAccessTemplate(); /** * load from the backend */ bool load(); /** Reload database. * You should execute this function if the external database * was changed. * This function will load the external database and afterwards * rejoin the local changes. Therefore the local database will be set consistent. */ |