Directory structure

This commit is contained in:
Aditya Kulkarni
2018-10-13 23:04:36 -07:00
parent 684edead71
commit e99c75b54a
35 changed files with 40 additions and 43 deletions

24
src/settings.h Normal file
View 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