Add raw templater

This commit is contained in:
Jan
2022-09-05 23:25:11 +02:00
parent 4ef38264c8
commit 1464329245
21 changed files with 996 additions and 7 deletions
+17
View File
@@ -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;
};