merge IniFile and XmlFile

This commit is contained in:
Chris Danford
2005-01-07 14:28:00 +00:00
parent 5b2582cab3
commit 981e52ec58
27 changed files with 427 additions and 509 deletions
+2 -2
View File
@@ -375,7 +375,7 @@ Song *SongID::ToSong() const
XNode* SongID::CreateNode() const
{
XNode* pNode = new XNode;
pNode->name = "Song";
pNode->m_sName = "Song";
pNode->AppendAttr( "Dir", sDir );
@@ -384,7 +384,7 @@ XNode* SongID::CreateNode() const
void SongID::LoadFromNode( const XNode* pNode )
{
ASSERT( pNode->name == "Song" );
ASSERT( pNode->m_sName == "Song" );
pNode->GetAttrValue("Dir", sDir);
}