Eneboo - Documentación para desarrolladores
|
00001 /*************************************************************************** 00002 AQPackager.h 00003 ------------------- 00004 begin : 06/03/2011 00005 copyright : (C) 2003-2011 by InfoSiAL S.L. 00006 email : mail@infosial.com 00007 ***************************************************************************/ 00008 /*************************************************************************** 00009 * This program is free software; you can redistribute it and/or modify * 00010 * it under the terms of the GNU General Public License as published by * 00011 * the Free Software Foundation; version 2 of the License. * 00012 ***************************************************************************/ 00013 /*************************************************************************** 00014 Este programa es software libre. Puede redistribuirlo y/o modificarlo 00015 bajo los términos de la Licencia Pública General de GNU en su 00016 versión 2, publicada por la Free Software Foundation. 00017 ***************************************************************************/ 00018 00019 #ifndef AQPACKAGER_H_ 00020 #define AQPACKAGER_H_ 00021 00022 #include <AQUnpacker.h> 00023 00024 class AQPackager 00025 { 00026 public: 00027 AQPackager(const QString & = QString::null) {} 00028 bool pack(const QString &, bool = true, bool = false, bool = false, bool = true, bool = false) { return false; } 00029 bool unpack(const QString &) { return false; } 00030 QString output() const { return QString::null; } 00031 QString outputPackage() const { return QString::null; } 00032 void setEncodeUtf8(bool = true) {} 00033 QStringList errorMessages() const { return QStringList(); } 00034 QStringList logMessages() const { return QStringList(); } 00035 void setFilter(const QStringList &) {} 00036 QStringList filter() const { return QStringList(); } 00037 }; 00038 00039 #endif /* AQPACKAGER_H_ */