48 class database_archives
51 database_archives() {};
52 database_archives(
const database_archives & ref) =
default;
53 database_archives(database_archives && ref)
noexcept =
default;
54 database_archives & operator = (
const database_archives & ref) =
default;
55 database_archives & operator = (database_archives && ref)
noexcept =
default;
56 ~database_archives() =
default;
58 void set_path(
const std::string & val) { chemin = val; };
59 void set_basename(
const std::string & val) { base = val; };
62 const std::string &
get_path()
const {
return chemin; };