OdbDesignLib
OdbDesign ODB++ Parsing Library
 
Loading...
Searching...
No Matches
ISaveable.h
1#pragma once
2
3#include <filesystem>
4#include "../odbdesign_export.h"
5
6namespace Odb::Lib::FileModel
7{
8 class ODBDESIGN_EXPORT ISaveable
9 {
10 public:
11 virtual bool Save(const std::filesystem::path& directory) = 0;
12
13 protected:
14 ISaveable() = default;
15 };
16}