Scanframe Modular Application 0.1.0
Loading...
Searching...
No Matches
IniProfileSettings.h
Go to the documentation of this file.
1#pragma once
3
4namespace sf
5{
6
8{
9 public:
10 bool load(const std::string& filepath) override;
11
12 bool read(const std::string& filepath) override;
13
14 [[nodiscard]] const std::string& getSettingsFileSuffix() const override;
15
16 private:
17 std::string _settingsFileSuffix{"gisf"};
18};
19
20}// namespace sf
Definition IniProfileSettings.h:8
const std::string & getSettingsFileSuffix() const override
bool load(const std::string &filepath) override
bool read(const std::string &filepath) override
Definition ProjectConfig.h:17
Definition Application.h:10