| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 | /*= StarPU-Top for StarPU =Copyright (C) 2011 William BraikYann CourtoisJean-Marie CouteyenAnthony RoyThis library is free software; you can redistribute it and/ormodify it under the terms of the GNU Lesser General PublicLicense as published by the Free Software Foundation; eitherversion 2.1 of the License, or (at your option) any later version.This library is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNULesser General Public License for more details.You should have received a copy of the GNU Lesser General PublicLicense along with this library; if not, write to the Free SoftwareFoundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA*/#ifndef CONFIGURATIONMANAGER_H#define CONFIGURATIONMANAGER_H#include <QSettings>static const QString CONFIG_FILE_DIR = ".";static const QString CONFIG_FILE_NAME = "starpu_top.cfg";class ConfigurationManager{ /* Contains and manages all the application settingsof the current instance, and remembers them for usein the next instances */public:    ConfigurationManager();    ~ConfigurationManager();    // Getters    QString serverHost() const;    int serverPort() const;    bool ssh() const;    QString commandLine() const;    bool antialiasing() const;    // Setters    void setServerHost(QString serverIP);    void setServerPort(int serverPort);    void setSSH(bool enabled);    void setCommandLine(QString commandLine);    void setAntialiasing(bool enabled);    // Other methods    void syncConfiguration();private:    // Data    QSettings *_applicationSettings;};#endif // CONFIGURATIONMANAGER_H
 |