<?php
/**
 * ****************************************************************
 * Project:      *
 * Copyright:    Copyright (c) 2007
 * Company:      Thomas Niemann
 * ****************************************************************
 * Workfile:     SingletonInterface.php
 * ****************************************************************
 * Description:  
 *                
 * ***************************************************************/
interface SingletonInterface {
	public static function getInstance();
}
?>