unused
This commit is contained in:
@@ -48,11 +48,6 @@ const RString &LocalizedString::GetValue() const
|
|||||||
return m_pImpl->GetValue();
|
return m_pImpl->GetValue();
|
||||||
}
|
}
|
||||||
|
|
||||||
bool LocalizedString::IsLoaded() const
|
|
||||||
{
|
|
||||||
return m_pImpl->IsLoaded();
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2001-2005 Chris Danford
|
* Copyright (c) 2001-2005 Chris Danford
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
|
|||||||
@@ -8,13 +8,12 @@ class LocalizedStringImpl;
|
|||||||
class LocalizedString
|
class LocalizedString
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
|
||||||
LocalizedString( const RString& sGroup = "", const RString& sName = "" );
|
LocalizedString( const RString& sGroup = "", const RString& sName = "" );
|
||||||
~LocalizedString();
|
~LocalizedString();
|
||||||
void Load( const RString& sGroup, const RString& sName );
|
void Load( const RString& sGroup, const RString& sName );
|
||||||
operator const RString &() const { return GetValue(); }
|
operator const RString &() const { return GetValue(); }
|
||||||
const RString &GetValue() const;
|
const RString &GetValue() const;
|
||||||
bool IsLoaded() const;
|
|
||||||
private:
|
private:
|
||||||
LocalizedStringImpl *m_pImpl;
|
LocalizedStringImpl *m_pImpl;
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user