//	ListFiles.h#ifndef LISTFILES_H#include "FilePath.h"#ifndef StringList	#include <vector.h>	typedef vector<String> StringList;	#define append(x) push_back(x)#endifStringList ListFiles( const FilePath& );inline StringList ListFiles( void ) { FilePath p; return ListFiles(p); }#endif