mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-21 16:45:44 +00:00
18 lines
419 B
C++
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;
|
|
};
|