/usr/include/libGenome-1.3/libGenome/gnBaseQualifier.h is in libgenome-1.3-0-dev 1.3.1-3build1.
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 | /////////////////////////////////////////////////////////////////////////////
// File: gnBaseQualifier.h
// Purpose: abstract Qualifier class
// Description: Provides an interface for Qualifiers in memory and on disk.
// Changes:
// Version: libGenome 0.5.1
// Author: Aaron Darling
// Modified by:
// Copyright: (c) Aaron Darling
// Licenses: See COPYING file for details
/////////////////////////////////////////////////////////////////////////////
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#ifndef _gnBaseQualifier_h_
#define _gnBaseQualifier_h_
#include "libGenome/gnDefs.h"
#include <string>
#include "libGenome/gnClone.h"
namespace genome {
/**
* gnBaseQualifier is a general interface to sequence qualifiers.
* gnBaseFeature uses qualifiers to store annotated sequences.
* Use gnStringQualifier for a general purpose qualifier class.
*/
class GNDLLEXPORT gnBaseQualifier : public gnClone
{
public:
gnBaseQualifier(){}
virtual ~gnBaseQualifier(){}
virtual gnBaseQualifier* Clone() const = 0;
/**
* Get the name of qualifier stored in this class.
* @return The qualifier name as a std::string.
*/
virtual std::string GetName() const = 0;
/**
* Get the qualifier stored in this class.
* @return The qualifier as a std::string.
*/
virtual std::string GetValue() const = 0;
/**
* Get the length of the qualifier name stored in this class.
* @return The length of the qualifier name.
*/
virtual uint32 GetNameLength() const = 0;
/**
* Get the length of the qualifier stored in this class.
* @return The length of the qualifier.
*/
virtual uint32 GetValueLength() const = 0;
private:
}; //class gnBaseQualifier
} // end namespace genome
#endif
// _gnBaseQualifier_h_
|