You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#ifndef INNOEXTRACT_BLOCKREADER_HPP |
|
#define INNOEXTRACT_BLOCKREADER_HPP |
|
|
|
#include <iostream> |
|
|
|
#include "Version.hpp" |
|
|
|
class BlockReader { |
|
|
|
public: |
|
|
|
static std::istream * get(std::istream & base, const InnoVersion & version); |
|
|
|
}; |
|
|
|
#endif // INNOEXTRACT_BLOCKREADER_HPP
|
|
|