Initial revision
[old-projects.git] / philter / philter / include / action.inc.php
CommitLineData
dd8de1ec
PH
1<?php
2/********************************************************************************
3* include/action.inc.php : The class representing an Action
4* ----------------------
5*
6* This file is part of the philter distribution
7* Copyright: See COPYING files that comes with this distribution
8*
9* vim: set expandtab shiftwidth=4 tabstop=4 softtabstop=4 textwidth=100:
10* $Id$
11********************************************************************************/
12
13class Action extends CoreObject {
14 function Action() {
15 $this->CoreObject();
16 }
17
18 function to_string() {
19 return "";
20 }
21}
22
23?>