You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
339 B
C++
32 lines
339 B
C++
9 years ago
|
#include "system.h"
|
||
|
|
||
|
System::System()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
int System::id() const
|
||
|
{
|
||
|
return m_id;
|
||
|
}
|
||
|
|
||
|
void System::setId(int id)
|
||
|
{
|
||
|
m_id = id;
|
||
|
}
|
||
|
|
||
|
QString System::pluginId() const
|
||
|
{
|
||
|
return m_pluginId;
|
||
|
}
|
||
|
|
||
|
QString System::settings() const
|
||
|
{
|
||
|
return m_settings;
|
||
|
}
|
||
|
|
||
|
void System::setSettings(const QString &settings)
|
||
|
{
|
||
|
m_settings = settings;
|
||
|
}
|