This commit is contained in:
Glenn Maynard
2006-01-13 00:36:37 +00:00
parent 873851eef2
commit c827c9ec1e
2 changed files with 1 additions and 7 deletions
-5
View File
@@ -48,11 +48,6 @@ const RString &LocalizedString::GetValue() const
return m_pImpl->GetValue();
}
bool LocalizedString::IsLoaded() const
{
return m_pImpl->IsLoaded();
}
/*
* Copyright (c) 2001-2005 Chris Danford
* All rights reserved.
+1 -2
View File
@@ -8,13 +8,12 @@ class LocalizedStringImpl;
class LocalizedString
{
public:
LocalizedString( const RString& sGroup = "", const RString& sName = "" );
~LocalizedString();
void Load( const RString& sGroup, const RString& sName );
operator const RString &() const { return GetValue(); }
const RString &GetValue() const;
bool IsLoaded() const;
private:
LocalizedStringImpl *m_pImpl;
};