#include <ossim/base/ossimConstants.h>
#include <string>
#include <vector>
#include <iostream>
Go to the source code of this file.
|
std::istream & | getline (std::istream &is, ossimString &str, char delim) |
|
std::istream & | getline (std::istream &is, ossimString &str) |
|
std::istream & | operator>> (std::istream &is, ossimString &s) |
|
std::ostream & | operator<< (std::ostream &os, const ossimString &s) |
|
ossimString | operator+ (const char *s1, const ossimString &s2) |
|
ossimString | operator+ (const std::string s1, const ossimString &s2) |
|
ossimString | operator+ (char c, const ossimString &s2) |
|
bool | operator== (const char *lhs, const ossimString &rhs) |
|
bool | operator== (const std::string &lhs, const ossimString &rhs) |
|
◆ getline() [1/2]
std::istream& getline |
( |
std::istream & |
is, |
|
|
ossimString & |
str, |
|
|
char |
delim |
|
) |
| |
|
inline |
Definition at line 916 of file ossimString.h.
References ossimString::string().
Referenced by ossimHttpResponse::convertHeaderStreamToKeywordlist(), ossimFgdcTxtDoc::findKey(), ossimRpfToc::getCorespondingEntry(), getline(), ossimRpfToc::getNumberOfFrames(), ossimRpfToc::getSourceTocFile(), ossimMultiBandHistogram::importHistogram(), ossimMultiResLevelHistogram::importHistogram(), ossimHistogram::importHistogram(), ossimEpsgProjectionDatabase::initialize(), ossimWktProjectionFactory::loadRecords(), ossimQuickbirdRpcHeader::open(), ossimRpfInfo::open(), ossimRangeDomeTileSource::open(), ossimHistogram::ossimProprietaryHeaderInformation::parseStream(), ossimMultiBandHistogram::ossimProprietaryHeaderInformation::parseStream(), ossimMultiResLevelHistogram::ossimProprietaryHeaderInformation::parseStream(), and ossimQuickbirdRpcHeader::readCoeff().
std::istream & getline(std::istream &is, ossimString &str, char delim)
const std::string & string() const
◆ getline() [2/2]
std::istream& getline |
( |
std::istream & |
is, |
|
|
ossimString & |
str |
|
) |
| |
|
inline |
◆ operator+() [1/3]
◆ operator+() [2/3]
◆ operator+() [3/3]
◆ operator<<()
std::ostream& operator<< |
( |
std::ostream & |
os, |
|
|
const ossimString & |
s |
|
) |
| |
|
inline |
◆ operator==() [1/2]
bool operator== |
( |
const char * |
lhs, |
|
|
const ossimString & |
rhs |
|
) |
| |
|
inline |
Definition at line 955 of file ossimString.h.
957 return (rhs.operator ==(lhs));
◆ operator==() [2/2]
bool operator== |
( |
const std::string & |
lhs, |
|
|
const ossimString & |
rhs |
|
) |
| |
|
inline |
Definition at line 960 of file ossimString.h.
962 return (rhs.operator ==(lhs));
◆ operator>>()
std::istream& operator>> |
( |
std::istream & |
is, |
|
|
ossimString & |
s |
|
) |
| |
|
inline |