Merge pull request #58 from slsdetectorgroup/fix/make-file-variables-private

make file interface and rawfile variables private
This commit is contained in:
Bechir Braham 2024-04-11 17:50:18 +02:00 committed by GitHub
commit eb7108b837
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 5 deletions

View File

@ -162,7 +162,7 @@ class FileInterface {
};
public:
protected:
std::string m_mode;
std::filesystem::path m_fname;
std::filesystem::path m_base_path;

View File

@ -147,6 +147,7 @@ class RawFile : public FileInterface {
*/
void open_subfiles();
private:
size_t n_subfiles;
size_t n_subfile_parts;
std::vector<std::vector<SubFile *>> subfiles;