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
511 B
24 lines
511 B
#include "resource.h"
|
|
|
|
namespace Evolution {
|
|
class DBWrapper;
|
|
}
|
|
|
|
namespace TDEABC {
|
|
class ResourceEvolution : public Resource {
|
|
public:
|
|
ResourceEvolution( const TDEConfig* 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;
|
|
};
|
|
}
|