<?php
require_once 'diy-blog/model/Page.php';
require_once 'diy-blog/model/om/BasePage.php';
/**
* A PostPage.
* Originally generated by Propel.
*
* @package diy-blog.model
* @author Martynas Jusevicius <hide@address.com>
* @link http://www.xml.lt
*/
class PostPage extends Page
{
private $commentCount = 0;
/**
* Constructs a new PostPage class, setting the Type column to PagePeer::CLASSKEY_POSTPAGE.
*/
public function __construct()
{
$this->setType(PagePeer::CLASSKEY_POSTPAGE);
}
public function setCommentCount($count)
{
$this->commentCount = $count;
}
public function getCommentCount()
{
return $this->commentCount;
}
} // PostPage