#ifndef opietodoresource_h #define opietodoresource_h class ToDoEvent; class ToDoResource { public: ToDoResource( ) {}; virtual QValueList load(const QString &file ) = 0; virtual bool save( const QString &file, const QValueList & ) = 0; }; #endif