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