1
0
Files
irix-657m-src/eoe/cmd/mediad/FormatDSO.H
2022-09-29 17:59:04 +03:00

21 lines
278 B
C++

#ifndef FormatDSO_included
#define FormatDSO_included
#include "DSO.H"
class Device;
class FormatDSO : public DSO {
public:
FormatDSO(const char *path) : DSO(path) { }
void inspect(Device&);
void flush() { unload(); }
};
#endif /* !FormatDSO_included */