DatExporter.h 548 B

12345678910111213141516171819202122232425262728
  1. //
  2. // Created by kikab on 04.06.2018.
  3. //
  4. #ifndef LOTRO_DAT_LIBRARY_DATEXPORTER_H
  5. #define LOTRO_DAT_LIBRARY_DATEXPORTER_H
  6. extern "C++" {
  7. namespace LOTRO_DAT {
  8. class DatFile;
  9. class DatExporter {
  10. public:
  11. DatExporter() = delete;
  12. DatExporter(const DatExporter &other) = delete;
  13. DatExporter& operator=(const DatExporter &other) = delete;
  14. ~DatExporter() = default;
  15. explicit DatExporter(DatFile *datFilePtr);
  16. private:
  17. DatFile *dat;
  18. };
  19. }
  20. };
  21. #endif //LOTRO_DAT_LIBRARY_DATEXPORTER_H