started working on function to verify the configuration settings

This commit is contained in:
kdeng00
2019-09-16 22:26:17 -04:00
parent 6e570cd495
commit bb783c61ad
4 changed files with 48 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
#ifndef INITIALIZATION_H_
#define INITIALIZATION_H_
#include "model/Models.h"
namespace verify
{
class Initialization
{
public:
static void checkIcarus(const model::BinaryPath&);
private:
bool confirmConfigAuth(const model::BinaryPath&);
bool confirmConfigDatabase(const model::BinaryPath&);
bool confirmConfigPaths(const model::BinaryPath&);
};
}
#endif