mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
10 lines
273 B
C++
10 lines
273 B
C++
#ifndef STREAM_H
|
|
#define STREAM_H
|
|
|
|
extern std::unique_ptr<Fluxmap> readStream(
|
|
std::string dir, unsigned track, unsigned side);
|
|
extern std::unique_ptr<Fluxmap> readStream(const std::string& path);
|
|
extern std::unique_ptr<Fluxmap> readStream(const Bytes& bytes);
|
|
|
|
#endif
|