mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-07-04 18:47:53 -05:00
Add Tests for ZCG cpp
This commit is contained in:
17
src/ZoneCodeGeneratorLib/ZoneCodeGenerator.h
Normal file
17
src/ZoneCodeGeneratorLib/ZoneCodeGenerator.h
Normal file
@ -0,0 +1,17 @@
|
||||
#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;
|
||||
};
|
Reference in New Issue
Block a user