00001
00002
00003
00004
00005
00006
00007 #ifdef USE_STD
00008 #include <iostream>
00009 #include <string>
00010 #include <algorithm>
00011 using namespace std;
00012 #else
00013 #include <iostream.h>
00014 #include <string.h>
00015 #include <algorithm.h>
00016 #endif
00017
00018 #ifndef DCFUTILITY_H
00019 #define DCFUTILITY_H
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029 #define DCF_DEFAULT_MPACKET 16384
00030
00031 void dcfsbfilename( const int, string&, string& );
00032
00033 void dcfmbfilename( const int, const int, const string&, string&);
00034
00035 void dcfdbfilename( const int, const string&, string& );
00036
00037 void dcflogfilename( const string&, string& );
00038
00039 #endif
00040