Changed: Create a typedef for lists of profiles and servers

This commit is contained in:
kervala 2016-03-05 12:34:02 +01:00
parent cdfea62e11
commit c2c9fbed36

View file

@ -40,6 +40,8 @@ struct CServer
extern const CServer NoServer;
typedef QVector<CServer> CServers;
struct CProfile
{
CProfile()
@ -58,6 +60,8 @@ struct CProfile
extern const CProfile NoProfile;
typedef QVector<CProfile> CProfiles;
/**
* Config file management and other stuff related to location of files/directories.
*
@ -94,10 +98,16 @@ public:
static CConfigFile* getInstance();
CServers getServers() const { return m_servers; }
void setServers(const CServers &servers) { m_servers = servers; }
int getServersCount() const;
const CServer& getServer(int i = -1) const;
const CServer& getServer(const QString &id) const;
CProfiles getProfiles() const { return m_profiles; }
void setProfiles(const CProfiles &profiles) { m_profiles = profiles; }
int getProfilesCount() const;
CProfile getProfile(int i = -1) const;
void setProfile(int i, const CProfile &profile);
@ -149,8 +159,8 @@ private:
int m_defaultServer;
int m_defaultProfile;
QVector<CServer> m_servers;
QVector<CProfile> m_profiles;
CServers m_servers;
CProfiles m_profiles;
QString m_installationDirectory;
QString m_srcDirectory;