-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Checkin. First release for development of client distribution system.
- Loading branch information
Christian Löpke
committed
Dec 9, 2018
1 parent
3776255
commit 51a3f17
Showing
4 changed files
with
34 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#include "clientInstallation.hpp" | ||
#include <ZenLib/utils/logger.h> | ||
#include <QStandardPaths> | ||
|
||
using namespace OpenGMP; | ||
|
||
ClientInstallation::ClientInstallation(Version &version) | ||
: version(version) | ||
{ | ||
//LogInfo() << "Will install clients here: " << QStandardPaths::writableLocation(QStandardPaths::AppDataLocation).toStdString(); | ||
} |
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#pragma once | ||
|
||
#include <Shared/Components/version.hpp> | ||
#include <string> | ||
|
||
namespace OpenGMP | ||
{ | ||
/** | ||
* @brief The ClientInstallation class manages installations. | ||
* Intended to check installations, get new versions, etc. | ||
*/ | ||
class ClientInstallation | ||
{ | ||
public: | ||
ClientInstallation(Version &version); | ||
|
||
std::string installationDirectory; | ||
Version version; | ||
}; | ||
} |
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