mirror of
https://github.com/1dot13/source.git
synced 2026-07-29 13:52:17 +02:00
git-svn-id: https://ja2svn.mooo.com/source/ja2/trunk/GameSource/ja2_v1.13/Build@4447 3b4a5df2-a311-0410-b5c6-a8a6f20db521
20 lines
348 B
C++
20 lines
348 B
C++
#ifndef _EXPORTER_BASE_H_
|
|
#define _EXPORTER_BASE_H_
|
|
|
|
#include <list>
|
|
#include <string>
|
|
|
|
namespace ja2xp
|
|
{
|
|
class IExporterBase
|
|
{
|
|
public:
|
|
typedef std::list<std::wstring> param_list_t;
|
|
|
|
virtual void handleCommand(std::list<std::wstring> const& params) = 0;
|
|
virtual void printHelp() = 0;
|
|
};
|
|
};
|
|
|
|
#endif // _EXPORTER_BASE_H_
|