27 #ifndef CONFIG_FILE_HPP
28 #define CONFIG_FILE_HPP
30 #include "../my_config.h"
39 class config_file :
public hide_file
42 config_file(
const deque<string> & target,
generic_file &f);
43 config_file(
const config_file & ref) =
default;
44 config_file & operator = (
const config_file & ref) =
default;
45 ~config_file() =
default;
47 deque<string> get_read_targets()
const;
50 virtual void fill_morceau()
override;
58 t_cible(
const string & val) { target = val; seen =
false; };
59 t_cible() { target =
""; seen =
false; };
62 deque<t_cible> cibles;
64 bool is_a_target(
const string & val);