예제 #1
0
파일: Xml.php 프로젝트: btweedy/foresmo
 /**
  * 
  * Marks the struct and its parents as dirty.
  * 
  * @return void
  * 
  */
 protected function _setIsDirty()
 {
     // set this struct as dirty
     $this->_is_dirty = true;
     // set the parent struct as dirty too
     if ($this->_parent) {
         $this->_parent->_setIsDirty();
     }
 }