15 lines
309 B
C
15 lines
309 B
C
|
#ifndef FILENAMES_H
|
||
|
#define FILENAMES_H
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
struct FileNames {
|
||
|
static const std::string configName;
|
||
|
static const std::string inputName;
|
||
|
static const std::string outputName;
|
||
|
static const std::string imgPath;
|
||
|
static const std::string neuralNetName;
|
||
|
};
|
||
|
|
||
|
#endif // FILENAMES_H
|