TYPO3 CMS  TYPO3_6-2
AbstractMemoryProcessor.php
Go to the documentation of this file.
1 <?php
3 
23 
33  protected $realMemoryUsage = TRUE;
34 
41  protected $formatSize = TRUE;
42 
50  $this->realMemoryUsage = (bool) $realMemoryUsage;
51  }
52 
58  public function getRealMemoryUsage() {
60  }
61 
68  public function setFormatSize($formatSize) {
69  $this->formatSize = (bool) $formatSize;
70  }
71 
77  public function getFormatSize() {
78  return $this->formatSize;
79  }
80 
81 }