/**
  * Gets the baseClass path if specified for table/db.
  * If not, will return 'propel.om.BaseObject'
  * @return     string
  */
 public static function getBaseClass(Table $table)
 {
     $class = $table->getBaseClass();
     if ($class === null) {
         $class = "propel.om.BaseObject";
     }
     return $class;
 }