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
@@ -28,7 +28,7 @@ void RadarValues::Zero()
XNode* RadarValues::CreateNode() const
{
XNode* pNode = new XNode;
pNode->name = "RadarValues";
pNode->m_sName = "RadarValues";
// TRICKY: Don't print a remainder for the integer values.
FOREACH_RadarCategory( rc )
@@ -50,7 +50,7 @@ XNode* RadarValues::CreateNode() const
void RadarValues::LoadFromNode( const XNode* pNode )
{
ASSERT( pNode->name == "RadarValues" );
ASSERT( pNode->m_sName == "RadarValues" );
Zero();