Initial revision
[old-projects.git] / philter / philter / include / core_object.inc.php
CommitLineData
dd8de1ec
PH
1<?php
2/********************************************************************************
3* include/core_object.inc.php : The base class for each philter core class
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
13/** Philter Core Objects base class.
14 * This is the base class of each philter core class
15 */
16class CoreObject {
17 /** constructor */
18 function CoreObject() {
19 }
20
21 /** function that convert the Object into a procmail string.
22 * @return the string, or "" if an error occurs
23 */
24 function to_string() {
25 return "";
26 }
27}
28
29?>