Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Oct 25, 2008, 5:13:35 PM (17 years ago)
Author:
landauf
Message:

renamed Level to XMLFile

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/objecthierarchy/src/core/BaseObject.cc

    r1993 r2010  
    3636#include "CoreIncludes.h"
    3737#include "XMLPort.h"
    38 #include "Level.h"
     38#include "XMLFile.h"
    3939#include "Template.h"
    4040#include "util/String.h"
     
    5656        this->bVisible_ = true;
    5757
    58         this->level_ = 0;
     58        this->file_ = 0;
    5959        this->namespace_ = 0;
    6060    }
     
    8686        @return The levelfile
    8787    */
    88     const std::string& BaseObject::getLevelfile() const
     88    const std::string& BaseObject::getFilename() const
    8989    {
    90         if (this->level_)
    91             return this->level_->getFile();
     90        if (this->file_)
     91            return this->file_->getFilename();
    9292        else
    9393            return blankString;
Note: See TracChangeset for help on using the changeset viewer.