Main Page | Class Hierarchy | Alphabetical List | Data Structures | File List | Data Fields | Globals

MCFTPfilename.cpp

Go to the documentation of this file.
00001 // MCFTPfilename.cpp
00002 //////////////////////////////////////////////////////////////////////
00003 //          (c) Copyright 2002 Brown Deer Technology, LLC.
00004 //                        All rights reserved.
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 //void mcftpsbfilename( int sbn, string& filenamebase, string& filename )
00017 //{
00018 //   char *ctmp = new char[2*2+1];
00019 //   inttohex( sbn, ctmp, 2 );
00020 //   filename = filenamebase + ".sb" + ctmp + ".mcftp";
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 

Generated on Mon May 31 21:38:49 2004 for SR2k4 Assembler by doxygen 1.3.6