2021-02-10 18:03:50 +01:00

17 lines
473 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;
};