- 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:
Wanne
2011-05-26 11:25:04 +00:00
parent 6e2bdd557c
commit be95a2a7b1
203 changed files with 44525 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
#ifndef _INIT_VFS_H_
#define _INIT_VFS_H_
#include <vfs/Core/vfs_path.h>
#include <exporter_base.h>
namespace ja2xp
{
class InitVFS
{
public:
static InitVFS& instance();
void checkParameters(IExporterBase::param_list_t const& params);
bool init();
vfs::Path const& srcPattern();
vfs::Path const& dstPattern();
private:
InitVFS();
bool has_src, has_dst;
bool src_lib, dst_create;
vfs::Path src_path, dst_path;
vfs::Path src_pattern, dst_pattern;
};
}
//bool InitVFS(vfs::Path const& sSrcPath, vfs::Path const& sDstPath,
// vfs::Path& src_pattern, vfs::Path& dst_pattern,
// bool bSourceAsLib, bool bCreateDstDirectory);
#endif // _INIT_VFS_H_