#include <iostream.h>#include <string.h>#include <algorithm.h>Include dependency graph for 2/DCFutility.h:

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.
Defines | |
| #define | DCF_DEFAULT_MPACKET 16384 |
Functions | |
| void | dcfdbfilename (const int, const string &, string &) |
| void | dcflogfilename (const string &, string &) |
| void | dcfmbfilename (const int, const int, const string &, string &) |
| void | dcfsbfilename (const int, string &, string &) |
|
|
Definition at line 29 of file 2/DCFutility.h. |
|
||||||||||||||||
|
Definition at line 64 of file DCFutility.cpp. References inttohex().
00069 {
00070 char *ctmp = new char[2*2+1];
00071 inttohex( blocknum, ctmp, 2 );
00072 dbfilename = filenamebase + ".db" + ctmp + ".dcf";
00073 };
|
|
||||||||||||
|
Definition at line 76 of file DCFutility.cpp. Referenced by DCFlogifstream.DCFlogifstream(), DCFsbofstream< Data_t >.DCFsbofstream(), and DCFsbofstream< Data_t >.filenamebase().
00080 {
00081 filenamelog = filenamebase + ".log.dcf";
00082 }
|
|
||||||||||||||||||||
|
Definition at line 50 of file DCFutility.cpp. References inttohex().
|
|
||||||||||||||||
|
Definition at line 39 of file DCFutility.cpp. References inttohex(). Referenced by DCFsbofstream< Data_t >.open(), and DCFsbifstream< Data_t >.open().
00044 {
00045 char *ctmp = new char[2*2+1];
00046 inttohex( superblocknum, ctmp, 2 );
00047 filenamesb = filenamebase + ".sb" + ctmp + ".dcf";
00048 };
|
1.3.6