00001 /*************************************************************************** 00002 seqobj.h - description 00003 ------------------- 00004 begin : Wed Aug 8 2001 00005 copyright : (C) 2001 by Thies H. Jochimsen 00006 email : jochimse@cns.mpg.de 00007 ***************************************************************************/ 00008 00009 /*************************************************************************** 00010 * * 00011 * This program is free software; you can redistribute it and/or modify * 00012 * it under the terms of the GNU General Public License as published by * 00013 * the Free Software Foundation; either version 2 of the License, or * 00014 * (at your option) any later version. * 00015 * * 00016 ***************************************************************************/ 00017 00018 00019 00020 #ifndef SEQOBJ_H 00021 #define SEQOBJ_H 00022 00023 #include <tjutils/tjlist.h> 00024 #include <tjutils/tjhandler.h> 00025 00026 #include <odinseq/seqtree.h> 00027 00036 class SeqObjBase : public ListItem<SeqObjBase>, public virtual SeqTreeObj, public Handled<const SeqObjBase*> { 00037 00038 protected: 00039 SeqObjBase(const STD_string& object_label="unnamedSeqObjBase"); 00040 SeqObjBase(const SeqObjBase& soa); 00041 SeqObjBase& operator = (const SeqObjBase& soa); 00042 }; 00043 00049 #endif
1.5.6