mirror of
https://github.com/ModOrganizer2/modorganizer-bsapacker.git
synced 2026-07-27 14:06:14 -07:00
17 lines
294 B
C++
17 lines
294 B
C++
#ifndef IFILEWRITERSERVICE_H
|
|
#define IFILEWRITERSERVICE_H
|
|
|
|
#include <string>
|
|
|
|
namespace BsaPacker
|
|
{
|
|
class IFileWriterService
|
|
{
|
|
public:
|
|
virtual ~IFileWriterService() = default;
|
|
virtual bool Write(const std::string&, const char*, uint32_t) const = 0;
|
|
};
|
|
}
|
|
|
|
#endif // IFILEWRITERSERVICE_H
|