throw out some unused code

This commit is contained in:
Caolán McNamara 2011-06-16 23:45:13 +01:00
parent 198c001626
commit 522dfdf1bc
4 changed files with 0 additions and 17 deletions

View file

@ -216,8 +216,6 @@ class StreamStr : public bostream
char i_cToRemove );
void strip_back(
char i_cToRemove );
void strip_frontback(
char i_cToRemove );
void strip_front_whitespace(); /// removes space, tab and crlf.
void strip_back_whitespace();
void strip_frontback_whitespace();

View file

@ -580,13 +580,6 @@ StreamStr::strip_back(char i_cToRemove)
pop_back(end() - it);
}
void
StreamStr::strip_frontback(char i_cToRemove)
{
strip_front(i_cToRemove);
strip_back(i_cToRemove);
}
void
StreamStr::strip_front_whitespace()
{

View file

@ -230,8 +230,6 @@ class AnElement : public Element
class APureElement : public PureElement
{
public:
APureElement(
const ::csv::String & i_sTagName );
APureElement(
const char * i_sTagName );
~APureElement();

View file

@ -365,12 +365,6 @@ AnElement::inq_Attrs() const
//*************************** APureElement **************************//
APureElement::APureElement( const String & i_sTagName )
: sTagName( i_sTagName )
// pContent
{
}
APureElement::APureElement( const char * i_sTagName )
: sTagName( i_sTagName )
// pContent