![]() |
![]() An Information Portal to Biological Macromolecular Structures |
|
PDB Home |
Contact Us ![]() |
![]() |
Software Tools Home | Dictionary Home | PDBML Home |
![]() |
#include "TblFileObj.h"
TblFileObj::TblFileObj();
TblFileObj::TblFileObj(char * filename, int openMode);
#include "TblFileObj.h"
TblFileObj * fobjR = new TblFileObj("./test/TESTFILE1", WRITE_MODE);
TblFileObj() is the default constructor for the TblFileObj class.
TblFileObj(char * , int) is a constructor for the TblFileObj class that opens a file filename in a mode specified by openMode. The data will write (WRITE_MODE) in, append (APPEND_MODE) to or read (READ_MODE) from filename. filename is name of binary file.
No Arguments |
filename | The name of file |
openMode | Mode in which file is opened |
None
None