Imported Upstream version 0.12.7
[bowtie.git] / SeqAn-1.1 / seqan / sequence / sequence_forwards.h
1  /*==========================================================================
2                 SeqAn - The Library for Sequence Analysis
3                           http://www.seqan.de 
4  ============================================================================
5   Copyright (C) 2007
6
7   This library is free software; you can redistribute it and/or
8   modify it under the terms of the GNU Lesser General Public
9   License as published by the Free Software Foundation; either
10   version 3 of the License, or (at your option) any later version.
11
12   This library is distributed in the hope that it will be useful,
13   but WITHOUT ANY WARRANTY; without even the implied warranty of
14   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15   Lesser General Public License for more details.
16
17  ============================================================================
18   $Id: sequence_forwards.h,v 1.1 2008/08/25 16:20:04 langmead Exp $
19  ==========================================================================*/
20
21 #ifndef SEQAN_HEADER_SEQUENCE_FORWARDS_H 
22 #define SEQAN_HEADER_SEQUENCE_FORWARDS_H 
23
24 //SEQAN_NO_GENERATED_FORWARDS: no forwards are generated for this file
25
26 //////////////////////////////////////////////////////////////////////////////
27
28 namespace SEQAN_NAMESPACE_MAIN 
29 {
30     
31 //////////////////////////////////////////////////////////////////////////////
32
33 template <typename TFile, typename TData> 
34 void read(TFile & file, TData & data);          // "projects/library/seqan/file/file_format_raw.h"(307)
35
36 //////////////////////////////////////////////////////////////////////////////
37
38 template <typename TFile, typename TData> 
39 void write(TFile & file, TData & data);         // "projects/library/seqan/file/file_format_raw.h"(327)
40
41 template <typename TFile, typename TData> 
42 void write(TFile & file, TData const & data);   // "projects/library/seqan/file/file_format_raw.h"(335)
43
44
45 //////////////////////////////////////////////////////////////////////////////
46
47 } //namespace SEQAN_NAMESPACE_MAIN
48
49 //////////////////////////////////////////////////////////////////////////////
50
51 #endif
52