Proyecto Final - Turinmachin
Recreación del minijuego de matemáticas de Brain-Age usando redes neuronales
Loading...
Searching...
No Matches
data.h
Go to the documentation of this file.
1#ifndef INCLUDE_COMMON_DATA_H
2#define INCLUDE_COMMON_DATA_H
3
4#include <fstream>
5#include <string>
6
7namespace common {
8
9 auto get_data_path() -> std::string;
10
11 auto get_data_file_path(const std::string& file_path) -> std::string;
12
13 auto get_data_file_path_unchecked(const std::string& file_path) -> std::string;
14
15 auto get_data_file_unchecked(const std::string& path) -> std::ifstream;
16
17 auto get_data_file(const std::string& path) -> std::ifstream;
18
19} // namespace common
20
21#endif
Definition agent.h:8
auto get_data_file(const std::string &path) -> std::ifstream
Definition data.cpp:34
auto get_data_file_path_unchecked(const std::string &file_path) -> std::string
Definition data.cpp:30
auto get_data_file_unchecked(const std::string &path) -> std::ifstream
Definition data.cpp:39
auto get_data_path() -> std::string
Definition data.cpp:10
auto get_data_file_path(const std::string &file_path) -> std::string
Definition data.cpp:21