mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-20 00:02:55 +00:00
18 lines
474 B
C++
18 lines
474 B
C++
#pragma once
|
|
|
|
class ZoneCodeGenerator
|
|
{
|
|
class Impl;
|
|
Impl* m_impl;
|
|
|
|
public:
|
|
ZoneCodeGenerator();
|
|
~ZoneCodeGenerator();
|
|
ZoneCodeGenerator(const ZoneCodeGenerator& other) = delete;
|
|
ZoneCodeGenerator(ZoneCodeGenerator&& other) noexcept = default;
|
|
ZoneCodeGenerator& operator=(const ZoneCodeGenerator& other) = delete;
|
|
ZoneCodeGenerator& operator=(ZoneCodeGenerator&& other) noexcept = default;
|
|
|
|
int Run(int argc, const char** argv) const;
|
|
};
|