]> git.donarmstrong.com Git - bamtools.git/blob - src/api/internal/BamPipe_p.h
a9725be7153bea5a08dbd221affe744bc903c55d
[bamtools.git] / src / api / internal / BamPipe_p.h
1 // ***************************************************************************
2 // BamPipe_p.h (c) 2011 Derek Barnett
3 // Marth Lab, Department of Biology, Boston College
4 // ---------------------------------------------------------------------------
5 // Last modified: 8 September 2011 (DB)
6 // ---------------------------------------------------------------------------
7 // Provides BAM pipe-specific IO behavior
8 // ***************************************************************************
9
10 #ifndef BAMPIPE_P_H
11 #define BAMPIPE_P_H
12
13 //  -------------
14 //  W A R N I N G
15 //  -------------
16 //
17 // This file is not part of the BamTools API.  It exists purely as an
18 // implementation detail. This header file may change from version to version
19 // without notice, or even be removed.
20 //
21 // We mean it.
22
23 #include <api/internal/ILocalIODevice_p.h>
24 #include <string>
25
26 namespace BamTools {
27 namespace Internal {
28
29 class BamPipe : public ILocalIODevice {
30
31     // ctor & dtor
32     public:
33         BamPipe(void);
34         ~BamPipe(void);
35
36     // IBamIODevice implementation
37     public:
38         bool IsRandomAccess(void) const;
39         bool Open(const IBamIODevice::OpenMode mode);
40         bool Seek(const int64_t& position);
41 };
42
43 } // namespace Internal
44 } // namespace BamTools
45
46 #endif // BAMPIPE_P_H