mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-08 05:48:19 -05:00
18 lines
371 B
C++
18 lines
371 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#include "ZoneCodeGeneratorArguments.h"
|
|
#include "Persistence/IDataRepository.h"
|
|
|
|
class HeaderFileReader
|
|
{
|
|
const ZoneCodeGeneratorArguments* m_args;
|
|
std::string m_filename;
|
|
|
|
public:
|
|
HeaderFileReader(const ZoneCodeGeneratorArguments* args, std::string filename);
|
|
|
|
bool ReadHeaderFile(IDataRepository* repository) const;
|
|
};
|