/usr/include/odinseq/seqgradobj.h is in libodin-dev 1.8.8-2ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 | /***************************************************************************
seqgradobj.h - description
-------------------
begin : Tue Aug 13 2002
copyright : (C) 2000-2014 by Thies H. Jochimsen
email : thies@jochimsen.de
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef SEQGRADOBJ_H
#define SEQGRADOBJ_H
#include <tjutils/tjhandler.h>
#include <odinseq/seqtree.h>
#include <odinseq/seqgrad.h>
#include <odinseq/seqlist.h>
class SeqObjList; // forward declaration
class SeqRotMatrixVector; // forward declaration
/**
* @addtogroup odinseq_internals
* @{
*/
/**
* This is the abstract base class for all gradient objects that can be part of a sequence
*/
class SeqGradObjInterface : public virtual SeqGradInterface, public virtual SeqTreeObj, public Handled<SeqGradObjInterface*>, public Handled<const SeqGradObjInterface*> {
public:
// overloading virtual functions from SeqTreeObj
double get_duration() const;
double get_pulprogduration() const; // Do we still need this?
virtual bool need_gp_terminator() const {return false;}
protected:
SeqGradObjInterface(const STD_string& object_label="unnamedSeqGradObjInterface");
SeqGradObjInterface(const SeqGradObjInterface& sgoa);
SeqGradObjInterface& operator = (const SeqGradObjInterface& sgoa);
};
/** @}
*/
#endif
|