Skip to content

Instantly share code, notes, and snippets.

#include <stdio.h>
#include <string.h>
#include <math.h>
#ifndef WIN32
#include <unistd.h>
#include <fcntl.h>
#include <sys/stat.h>
#include <sys/mman.h>
#endif
@jmue
jmue / testdatastream.cpp
Created August 12, 2011 07:21
LibRaw stream implementation
#include "testdatastream.h"
TestDataStream::TestDataStream(const char *fname)
: filename(fname)
{
}
TestDataStream::~TestDataStream(void)
{
}