22 lines
474 B
C++
22 lines
474 B
C++
#ifndef INITIALIZATION_H_
|
|
#define INITIALIZATION_H_
|
|
|
|
#include "model/Models.h"
|
|
|
|
namespace verify
|
|
{
|
|
class Initialization
|
|
{
|
|
public:
|
|
static void checkIcarus(const model::BinaryPath&);
|
|
private:
|
|
static bool confirmConfigAuth(const model::BinaryPath&);
|
|
static bool confirmConfigDatabase(const model::BinaryPath&);
|
|
static bool confirmConfigPaths(const model::BinaryPath&);
|
|
|
|
static void failedConfirmation();
|
|
};
|
|
}
|
|
|
|
#endif
|