|
|
/* This file is part of libkabc. Copyright (c) 2001 Cornelius SchumacherThis library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A 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 KABC_STDADDRESSBOOK_H #define KABC_STDADDRESSBOOK_H // $Id: stdaddressbook.h,v 1.4 2002/03/04 09:43:11 cschumac Exp $ #include "addressbook.h" namespace KABC { /** @short Standard KDE address book This class provides access to the standard KDE address book shared by all applications. It's implemented as a singleton. Use @ref self() to get the address book object. */ class StdAddressBook : public AddressBook { public: /** Get the standard addressbook object. */ static AddressBook *self(); /** Save the standard address book to disk. */ static bool save(); /** Get the file name of the standard address book. */ static QString fileName(); QString identifier(); protected: StdAddressBook(); ~StdAddressBook(); private: static AddressBook *mSelf; }; } #endif
Generated by: hany on w1.md.megaloman.sk on Tue Aug 12 21:21:23 2003, using kdoc 2.0a54. |