// -*- c++ -*- /*************************************************************************** qdatastoring.h - description ------------------- begin : dim mar 17 16:56:00 CET 2003 copyright : (C) 2003 by Romain Vinot email : vinot@aist.enst.fr ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #ifndef _QDATASTORING_H_ #define _QDATASTORING_H_ #include "datastoring.h" class QPixmapBoard; class ApplicationWindow; class QDataStoring : public DataStoring { public: QDataStoring(); ~QDataStoring(); void setBoard(QPixmapBoard *b); void setApp(ApplicationWindow *aw); void checkDefaultPrefs(); void checkCurrentPrefs(); void SaveDeadTiles(QDomDocument &doc, QDomElement &liste); private: QPixmapBoard *qb; ApplicationWindow *main; }; #endif