You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
507 B
24 lines
507 B
15 years ago
|
#include "resource.h"
|
||
|
|
||
|
namespace Evolution {
|
||
|
class DBWrapper;
|
||
|
}
|
||
|
|
||
|
namespace KABC {
|
||
|
class ResourceEvolution : public Resource {
|
||
|
public:
|
||
|
ResourceEvolution( const KConfig* config );
|
||
|
~ResourceEvolution();
|
||
|
|
||
|
bool doOpen();
|
||
|
void doClose();
|
||
|
Ticket* requestSaveTicket();
|
||
|
bool load();
|
||
|
bool save( Ticket* ticket );
|
||
|
void removeAddressee( const Addressee& );
|
||
|
private:
|
||
|
Evolution::DBWrapper *mWrap;
|
||
|
bool m_isOpen : 1;
|
||
|
};
|
||
|
}
|