Bitstream Interpretation Library (BIL)  0.1
BitFileReader.hpp
Go to the documentation of this file.
1 
6 #pragma once
7 #ifndef BIL_BITFILEREADER_HPP
8 #define BIL_BITFILEREADER_HPP
9 
10 #include <istream>
11 
12 
13 namespace bil {
14 
15  class BitFileData;
16 
17 
24  void readBitfile(BitFileData& bfd, std::istream& inputStream);
25 
26 }
27 
28 #endif