mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2026-09-18 03:47:05 +00:00
Add raw templater
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
#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;
|
||||
};
|
||||
Reference in New Issue
Block a user