bes Updated for version 3.21.1
The Backend Server (BES) is the lower two tiers of the Hyrax data server
|
Public Member Functions | |
bool | close () const |
virtual void | dump (std::ostream &strm) const |
dump the contents of this object to the specified ostream | |
bool | eof () const |
void | get (std::vector< std::string > &row) |
std::string | get_file_name () const |
unsigned long long | get_row_number () const |
bool | open (const std::string &filepath) |
void | reset () |
Definition at line 46 of file CSV_Reader.h.
CSV_Reader::CSV_Reader | ( | ) |
Definition at line 46 of file CSV_Reader.cc.
|
virtual |
Definition at line 50 of file CSV_Reader.cc.
bool CSV_Reader::close | ( | ) | const |
Definition at line 73 of file CSV_Reader.cc.
|
virtual |
dump the contents of this object to the specified ostream
This method is implemented by all derived classes to dump their contents, in other words, any state they might have, private variables, etc...
The inline function below can be used to dump the contents of an OPeNDAPObj object. For example, the object Animal is derived from BESObj. A user could do the following:
Animal *a = new dog( "Sparky" ) ; cout << a << endl ;
And the dump method for dog could display the name passed into the constructor, the (this) pointer of the object, etc...
strm | C++ i/o stream to dump the object to |
Implements BESObj.
Definition at line 115 of file CSV_Reader.cc.
bool CSV_Reader::eof | ( | ) | const |
Definition at line 85 of file CSV_Reader.cc.
void CSV_Reader::get | ( | std::vector< std::string > & | row | ) |
Definition at line 97 of file CSV_Reader.cc.
|
inline |
Definition at line 67 of file CSV_Reader.h.
|
inline |
Definition at line 66 of file CSV_Reader.h.
bool CSV_Reader::open | ( | const std::string & | filepath | ) |
Definition at line 61 of file CSV_Reader.cc.
void CSV_Reader::reset | ( | ) |
Definition at line 90 of file CSV_Reader.cc.