FF7FieldModelExporterPC.h 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /*
  2. -----------------------------------------------------------------------------
  3. Copyright (c) 26.10.2013 Tobias Peters <tobias.peters@kreativeffekt.at>
  4. This file is part of Q-Gears
  5. Q-Gears is free software: you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation, version 2.0 (GPLv2) of the License.
  8. Q-Gears is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. -----------------------------------------------------------------------------
  13. */
  14. #ifndef __FF7FieldModelExporterPC_H__
  15. #define __FF7FieldModelExporterPC_H__
  16. #include "QGearsUtility.h"
  17. namespace QGears
  18. {
  19. namespace FF7
  20. {
  21. class FieldModelExporterPC : public Utility
  22. {
  23. public:
  24. FieldModelExporterPC( int argc, char *argv[] );
  25. virtual ~FieldModelExporterPC();
  26. protected:
  27. virtual String getWindowTitle( void ) const;
  28. private:
  29. FieldModelExporterPC();
  30. };
  31. }
  32. }
  33. #endif // __FF7FieldModelExporterPC_H__