#include "cccc.h"
#include "cccc_ext.h"
#include "cccc_rec.h"
#include "cccc_prj.h"
#include "cccc_mod.h"
#include "cccc_mem.h"
#include "cccc_use.h"
Go to the source code of this file.
Enumerator |
---|
RECORD_TRANSCRIBED |
|
RECORD_ADDED |
|
RECORD_ERROR |
|
Definition at line 45 of file cccc_db.h.
template<class T >
void DisposeOfImportRecord |
( |
T * |
record_ptr, |
|
|
int |
fromfile_status |
|
) |
| |
Definition at line 66 of file cccc_db.cc.
68 switch(fromfile_status)
85 cerr <<
"Import error " << fromfile_status
87 <<
" for " << record_ptr->key()
bool PeekAtNextLinePrefix |
( |
ifstream & |
ifstr, |
|
|
string |
pfx |
|
) |
| |
Definition at line 51 of file cccc_db.cc.
54 char prefix_buffer[1024];
55 size_t initial_stream_pos=ifstr.tellg();
56 ifstr.getline(prefix_buffer,1023,
SEP);
57 if(pfx==prefix_buffer)
61 ifstr.seekg(initial_stream_pos);
void Resolve_Fields |
( |
string & |
field1, |
|
|
string & |
field2 |
|
) |
| |