Use common code formatting style.

This commit is contained in:
SET
2020-11-14 14:46:28 +01:00
parent a7146a07b2
commit a721bb0225
16 changed files with 144 additions and 82 deletions

View File

@@ -22,7 +22,8 @@ using namespace std;
/**
* Json configuration file reader.
*/
class AppConfig {
class AppConfig
{
public:
AppConfig(WText * notifyWidget);
virtual ~AppConfig();
@@ -101,7 +102,7 @@ private:
* @return
*/
const WString GetSubjectDnAttribute(const WSslCertificate::DnAttributeName& attrName) const;
bool WriteTextFile(const WString& filePath, const WString& content);
};