/usr/include/odinseq/seqsimvec.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 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 | /***************************************************************************
seqsimvec.h - description
-------------------
begin : Mon Aug 9 2004
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 SEQSIMVEC_H
#define SEQSIMVEC_H
#include <odinseq/seqvec.h>
/**
* @ingroup odinseq_internals
* This vector class is used to group other vector objects together so that
* they can be updated simultaneously at each iteration.
*/
class SeqSimultanVector : public SeqVector, public virtual SeqClass, public List<SeqVector, const SeqVector*, const SeqVector&> {
public:
/**
* Construct an empty vector of sequence objects with the given label
*/
SeqSimultanVector(const STD_string& object_label="unnamedSeqSimultanVector") : SeqClass(), SeqVector(object_label) {set_label(object_label);}
/**
* Constructs a copy of 'ssv'
*/
SeqSimultanVector(const SeqSimultanVector& ssv);
/**
* Assignment operator that makes this vector object become a copy of 'ssv'
*/
SeqSimultanVector& operator = (const SeqSimultanVector& ssv);
/**
* Appends sv to the list of managed vectors
*/
SeqSimultanVector& operator += (const SeqVector& sv);
/**
* clears the list of managed vectors
*/
SeqSimultanVector& clear() { List<SeqVector, const SeqVector*, const SeqVector&>::clear(); return *this;}
// implemented virtual functions from SeqVector
svector get_vector_commands(const STD_string& iterator) const;
unsigned int get_vectorsize() const;
unsigned int get_numof_iterations() const;
STD_string get_loopcommand() const;
nestingRelation get_nesting_relation() const;
bool needs_unrolling_check() const;
bool prep_iteration() const;
// bool is_acq_vector() const;
const SeqVector& set_vechandler(const SeqCounter* sc) const;
bool is_qualvector() const;
private:
// implemented virtual functions from SeqClass
void clear_container();
};
#endif
|