23 #ifndef STORAGE_ENVIRONMENT_H
24 #define STORAGE_ENVIRONMENT_H
37 STANDARD_WRITE_DEVICEGRAPH,
38 STANDARD_WRITE_MOCKUP,
82 const std::string& get_devicegraph_filename()
const;
83 void set_devicegraph_filename(
const std::string& devicegraph_filename);
85 const std::string& get_arch_filename()
const;
86 void set_arch_filename(
const std::string& arch_filename);
88 const std::string& get_mockup_filename()
const;
89 void set_mockup_filename(
const std::string& mockup_filename);
91 friend std::ostream& operator<<(std::ostream& out,
const Environment& environment);
97 Impl& get_impl() {
return *impl; }
98 const Impl& get_impl()
const {
return *impl; }
102 const std::unique_ptr<Impl> impl;