mirror of
https://github.com/1dot13/source.git
synced 2026-09-02 14:36:06 +02:00
- Added missing projects "VFS" & "export" to SVN
git-svn-id: https://ja2svn.mooo.com/source/ja2/trunk/GameSource/ja2_v1.13/Build@4447 3b4a5df2-a311-0410-b5c6-a8a6f20db521
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
#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_
|
||||
Reference in New Issue
Block a user