]> git.donarmstrong.com Git - bamtools.git/blobdiff - BGZF.h
Minor formatting cleanup in BamIndex.*
[bamtools.git] / BGZF.h
diff --git a/BGZF.h b/BGZF.h
index c5cd60bbf87f998576a96b8d9db8b3aba863d68a..37bcff75bd2a3a93bb9665c21b250f2b69321246 100644 (file)
--- a/BGZF.h
+++ b/BGZF.h
@@ -93,7 +93,7 @@ struct BgzfData {
 \r
     // constructor & destructor\r
     public:\r
-        BgzfData(bool writeUncompressed = false);\r
+        BgzfData(void);\r
         ~BgzfData(void);\r
 \r
     // main interface methods\r
@@ -101,7 +101,7 @@ struct BgzfData {
         // closes BGZF file\r
         void Close(void);\r
         // opens the BGZF file (mode is either "rb" for reading, or "wb" for writing)\r
-        bool Open(const std::string& filename, const char* mode);\r
+        bool Open(const std::string& filename, const char* mode, bool isWriteUncompressed = false);\r
         // reads BGZF data into a byte buffer\r
         int Read(char* data, const unsigned int dataLength);\r
         // seek to position in BGZF file\r