-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
More code reorganization and some test callbacks
- Loading branch information
Showing
7 changed files
with
125 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,33 @@ | ||
#ifndef SETTINGS_H_ | ||
#define SETTINGS_H_ | ||
|
||
namespace MumbleClient { | ||
|
||
class Settings { | ||
public: | ||
|
||
static std::string getSSLDbPath() { | ||
return "sql:."; | ||
} | ||
|
||
static std::string getHost() { | ||
std::string getHost() const { | ||
return "0xy.de"; | ||
} | ||
|
||
static std::string getPort() { | ||
std::string getPort() const { | ||
return "64739"; | ||
} | ||
|
||
static std::string getUserName() { | ||
std::string getUserName() const { | ||
return "testBot"; | ||
} | ||
|
||
static std::string getPassword() { | ||
std::string getPassword() const { | ||
return ""; | ||
} | ||
|
||
/* | ||
private: | ||
Settings(); | ||
Settings(const Settings&); | ||
void operator=(const Settings&); | ||
*/ | ||
}; | ||
|
||
} // end namespace MumbleClient | ||
|
||
#endif // SETTINGS_H_ |