00001
00002
00003
00004
00005
00006
00007 #ifdef USE_STD
00008 #include <string>
00009 using namespace std;
00010 #else
00011 #include <string.h>
00012 #endif
00013
00014 #include "utility.h"
00015
00016
00017
00018
00019
00020
00021
00022
00023 string MCFTPfilename( string filenamebase )
00024 {
00025 return MCFTPfilename( filenamebase.c_str() );
00026 }
00027
00028 string MCFTPfilename( char* filenamebase )
00029 {
00030 string filename = filenamebase;
00031 filename += ".mcftp";
00032 return filename;
00033 };
00034