aboutsummaryrefslogtreecommitdiff
path: root/libs/bsapacker/src/FileWriterService.h
blob: b63b563e6749fd2f3733aa02fd02edb243ea883d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef FILEWRITERSERVICE_H
#define FILEWRITERSERVICE_H

#include "bsapacker_global.h"
#include <bsapacker/IFileWriterService.h>

namespace BsaPacker
{
	class BSAPACKER_EXPORT FileWriterService : public IFileWriterService
	{
	public:
		FileWriterService() = default;
		bool Write(const std::string& path, const char* payload, const uint32_t size) const override;
	};
}
#endif // FILEWRITERSERVICE_H