Directory structure
This commit is contained in:
24
src/settings.h
Normal file
24
src/settings.h
Normal file
@@ -0,0 +1,24 @@
|
||||
#ifndef SETTINGS_H
|
||||
#define SETTINGS_H
|
||||
|
||||
|
||||
class Settings
|
||||
{
|
||||
public:
|
||||
Settings();
|
||||
|
||||
QString getUsernamePassword();
|
||||
QString getHost();
|
||||
QString getPort();
|
||||
|
||||
double fees() { return 0.0001; }
|
||||
void refresh();
|
||||
private:
|
||||
|
||||
QString host;
|
||||
QString port;
|
||||
QString username;
|
||||
QString password;
|
||||
};
|
||||
|
||||
#endif // SETTINGS_H
|
||||
Reference in New Issue
Block a user