ODIN
seqgradobj.h
1 /***************************************************************************
2  seqgradobj.h - description
3  -------------------
4  begin : Tue Aug 13 2002
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 #ifndef SEQGRADOBJ_H
19 #define SEQGRADOBJ_H
20 
21 #include <tjutils/tjhandler.h>
22 
23 #include <odinseq/seqtree.h>
24 #include <odinseq/seqgrad.h>
25 #include <odinseq/seqlist.h>
26 
27 
28 class SeqObjList; // forward declaration
29 class SeqRotMatrixVector; // forward declaration
30 
40 class SeqGradObjInterface : public virtual SeqGradInterface, public virtual SeqTreeObj, public Handled<SeqGradObjInterface*>, public Handled<const SeqGradObjInterface*> {
41 
42  public:
43 
44  // overloading virtual functions from SeqTreeObj
45  double get_duration() const;
46 
47 
48  double get_pulprogduration() const; // Do we still need this?
49 
50 
51  virtual bool need_gp_terminator() const {return false;}
52 
53  protected:
54  SeqGradObjInterface(const STD_string& object_label="unnamedSeqGradObjInterface");
56  SeqGradObjInterface& operator = (const SeqGradObjInterface& sgoa);
57 
58 };
59 
60 
61 
66 #endif
double get_duration() const
Container for sequence objects.
Definition: seqlist.h:87
Vector of SeqRotMatrix's.