Implement a color passing function for various options.

Refs #1.
This commit is contained in:
2018-04-03 16:15:08 +02:00
parent d76c067489
commit 62153d9c6d
3 changed files with 142 additions and 80 deletions

View File

@@ -24,13 +24,14 @@ namespace fmri {
const vector<string>& inputs() const;
private:
const string modelPath;
const string weightsPath;
const string meansPath;
const string labelsPath;
const string dumpPath;
const vector<string> inputPaths;
std::array<float, 4> pathColor_;
string modelPath;
string weightsPath;
string meansPath;
char const * labelsPath;
char const * dumpPath;
vector<string> inputPaths;
Options(string &&, string &&, string&&, string&&, string&&, vector<string> &&) noexcept;
Options() noexcept;
};
}