]> git.donarmstrong.com Git - bamtools.git/blobdiff - src/api/BamReader.cpp
Added API_EXPORT macro to classes in BamTools API
[bamtools.git] / src / api / BamReader.cpp
index d7476db3d6c3ee06e32acbac21ddbb1a1a5894b7..f05b1211ee83e2a26c8ee0b547ab4ff8102cef7b 100644 (file)
@@ -3,7 +3,7 @@
 // Marth Lab, Department of Biology, Boston College
 // All rights reserved.
 // ---------------------------------------------------------------------------
-// Last modified: 13 October 2010 (DB)
+// Last modified: 19 November 2010 (DB)
 // ---------------------------------------------------------------------------
 // Uses BGZF routines were adapted from the bgzf.c code developed at the Broad
 // Institute.
 // Provides the basic functionality for reading BAM files
 // ***************************************************************************
 
-// C++ includes
+#include <api/BamReader.h>
+#include <api/BGZF.h>
+using namespace BamTools;
+
 #include <algorithm>
+#include <iostream>
 #include <iterator>
 #include <string>
 #include <vector>
-#include <iostream>
-#include "BGZF.h"
-#include "BamReader.h"
-using namespace BamTools;
 using namespace std;
 
 struct BamReader::BamReaderPrivate {