2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-07-04 02:01:51 +00:00
Files
OpenAssetTools/src/RawTemplater/RawTemplater.h
2022-09-05 23:25:11 +02:00

18 lines
419 B
C++

#pragma once
class RawTemplater
{
class Impl;
Impl* m_impl;
public:
RawTemplater();
~RawTemplater();
RawTemplater(const RawTemplater& other) = delete;
RawTemplater(RawTemplater&& other) noexcept = default;
RawTemplater& operator=(const RawTemplater& other) = delete;
RawTemplater& operator=(RawTemplater&& other) noexcept = default;
int Run(int argc, const char** argv) const;
};