00001 /* 00002 * Copyright (c) 2001-2004 MUSIC TECHNOLOGY GROUP (MTG) 00003 * UNIVERSITAT POMPEU FABRA 00004 * 00005 * 00006 * This program is free software; you can redistribute it and/or modify 00007 * it under the terms of the GNU General Public License as published by 00008 * the Free Software Foundation; either version 2 of the License, or 00009 * (at your option) any later version. 00010 * 00011 * This program is distributed in the hope that it will be useful, 00012 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00014 * GNU General Public License for more details. 00015 * 00016 * You should have received a copy of the GNU General Public License 00017 * along with this program; if not, write to the Free Software 00018 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00019 * 00020 */ 00021 00023 // Class Component: Abstract class for all components in the 00025 // Description: 00027 00028 #ifndef _Component_ 00029 #define _Component_ 00030 00031 #include "Storage.hxx" 00032 00033 namespace CLAM { 00038 class Component { 00039 // Construction/Destruction 00040 public: 00041 //* The required virtual destructor 00042 virtual ~Component(); 00043 // Redifinible methods 00044 public: 00050 virtual void StoreOn (Storage & storage) const =0; 00056 virtual void LoadFrom (Storage & storage)=0; 00057 00058 // TODO: Documentation for copy functions 00059 // TODO: Copy functions must be pure virtual 00060 virtual Component* ShallowCopy() const { return 0; }; 00061 virtual Component* DeepCopy() const { return 0; }; 00062 00066 virtual const char * GetClassName() const =0; 00067 }; 00068 00069 } 00070 00071 #endif//_Component_ 00072