ODIN
seqobj.h
1 /***************************************************************************
2  seqobj.h - description
3  -------------------
4  begin : Wed Aug 8 2001
5  copyright : (C) 2000-2021 by Thies H. Jochimsen
6  email : thies@jochimsen.de
7  ***************************************************************************/
8 
9 /***************************************************************************
10  * *
11  * This program is free software; you can redistribute it and/or modify *
12  * it under the terms of the GNU General Public License as published by *
13  * the Free Software Foundation; either version 2 of the License, or *
14  * (at your option) any later version. *
15  * *
16  ***************************************************************************/
17 
18 
19 
20 #ifndef SEQOBJ_H
21 #define SEQOBJ_H
22 
23 #include <tjutils/tjlist.h>
24 #include <tjutils/tjhandler.h>
25 
26 #include <odinseq/seqtree.h>
27 
36 class SeqObjBase : public ListItem<SeqObjBase>, public virtual SeqTreeObj, public Handled<const SeqObjBase*> {
37 
38  protected:
39  SeqObjBase(const STD_string& object_label="unnamedSeqObjBase");
40  SeqObjBase(const SeqObjBase& soa);
41  SeqObjBase& operator = (const SeqObjBase& soa);
42 };
43 
49 #endif