File: gnStringHeader.h

package info (click to toggle)
libgenome 1.3.1-7
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 2,156 kB
  • ctags: 1,212
  • sloc: cpp: 10,910; sh: 8,264; makefile: 79
file content (121 lines) | stat: -rw-r--r-- 2,760 bytes parent folder | download | duplicates (8)
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
/////////////////////////////////////////////////////////////////////////////
// File:            gnStringHeader.h
// Purpose:         abstract Header class
// Description:     Provides an interface for Headers in memory.
// 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 _gnStringHeader_h_
#define _gnStringHeader_h_

#include "libGenome/gnDefs.h"

#include <string>
#include "libGenome/gnClone.h"
#include "libGenome/gnLocation.h"
#include "libGenome/gnBaseHeader.h"

namespace genome {


/**
 * gnStringHeader stores sequence related header information in memory.
 * Use gnStringHeader for a general purpose headers.
 * @see gnBaseHeader
 */
class GNDLLEXPORT gnStringHeader : public gnBaseHeader
{
public:
	/**
	 * Empty constructor.
	 */
	gnStringHeader();
	/**
	 * Create a gnStringHeader.
	 * @param name The header name.
	 * @param header The header.
	 */
	gnStringHeader(const std::string& name, const std::string& header);
	/**
	 * Copy constructor.
	 * @param s The gnStringHeader to copy.
	 */
	gnStringHeader(const gnStringHeader& s);
	/**
	 * Destructor, frees memory.
	 */
	~gnStringHeader() {};

	gnStringHeader* Clone() const;

	std::string GetHeader() const;
	std::string GetHeaderName() const;

	/**
	 * Set the header stored in this class.
	 * @param header The header as a std::string.
	 */
	void SetHeader(const std::string& header);
	/**
	 * Set the header's name stored in this class.
	 * @param name The header name as a std::string.
	 */
	void SetHeaderName(const std::string& name);
	
	uint32 GetLength() const;
private:
	std::string m_name;
	std::string m_header;
}; //class gnStringHeader

inline
gnStringHeader::gnStringHeader(){
	m_header = std::string();
}
inline
gnStringHeader::gnStringHeader(const std::string& name, const std::string& header){
	m_name = name;
	m_header = header;
}
inline
gnStringHeader::gnStringHeader(const gnStringHeader& s){
	m_header = std::string(s.m_header);
}
inline
gnStringHeader* gnStringHeader::Clone() const{
	return new gnStringHeader(*this);
}
inline
std::string gnStringHeader::GetHeader() const{
	return m_header;
}
inline
std::string gnStringHeader::GetHeaderName() const{
	return m_name;
}
inline
void gnStringHeader::SetHeader(const std::string& header){
	m_header = header;
}
inline
void gnStringHeader::SetHeaderName(const std::string& name){
	m_name = name;
}
inline
uint32 gnStringHeader::GetLength() const{
	return m_header.length();
}


}	// end namespace genome

#endif
	// _gnStringHeader_h_