]> git.donarmstrong.com Git - bamtools.git/blobdiff - src/api/internal/BamFile_p.h
Organized api/internal into subdirs
[bamtools.git] / src / api / internal / BamFile_p.h
diff --git a/src/api/internal/BamFile_p.h b/src/api/internal/BamFile_p.h
deleted file mode 100644 (file)
index 873e71a..0000000
+++ /dev/null
@@ -1,51 +0,0 @@
-// ***************************************************************************
-// BamFile_p.h (c) 2011 Derek Barnett
-// Marth Lab, Department of Biology, Boston College
-// ---------------------------------------------------------------------------
-// Last modified: 10 October 2011 (DB)
-// ---------------------------------------------------------------------------
-// Provides BAM file-specific IO behavior
-// ***************************************************************************
-
-#ifndef BAMFILE_P_H
-#define BAMFILE_P_H
-
-//  -------------
-//  W A R N I N G
-//  -------------
-//
-// This file is not part of the BamTools API.  It exists purely as an
-// implementation detail. This header file may change from version to version
-// without notice, or even be removed.
-//
-// We mean it.
-
-#include "api/internal/ILocalIODevice_p.h"
-#include <string>
-
-namespace BamTools {
-namespace Internal {
-
-class BamFile : public ILocalIODevice {
-
-    // ctor & dtor
-    public:
-        BamFile(const std::string& filename);
-        ~BamFile(void);
-
-    // ILocalIODevice implementation
-    public:
-        void Close(void);
-        bool IsRandomAccess(void) const;
-        bool Open(const IBamIODevice::OpenMode mode);
-        bool Seek(const int64_t& position);
-
-    // data members
-    private:
-        std::string m_filename;
-};
-
-} // namespace Internal
-} // namespace BamTools
-
-#endif // BAMFILE_P_H