Mercurial > hg > x
view tstream.h @ 2:fc19d45615d1
* Make all file names lower-case to avoid case ambiguity
(some includes differed in case from the filenames they were
trying to include). Also replace MinGW-specific mem.h with
string.h
author | Chris Cannam |
---|---|
date | Tue, 05 Oct 2010 11:04:40 +0100 |
parents | TStream.h@6422640a802f |
children | 5f3c32dc6e17 |
line wrap: on
line source
#ifndef TSTREAM_H #define TSTREAM_H /* TStream.h - a stream I/O interface without implementation. This file is included to allow compiling relevent functions that uses Borland VCL's TStream class for abstract I/O purposes. */ enum TSeekOrigin {soFromBeginning, soFromCurrent, soFromEnd}; class TStream { public: TStream(); ~TStream(); int Read(void*, int){return 0;} int Write(void*, int){return 0;} int Seek(int, TSeekOrigin){return Position;} int Position; }; #endif // TSTREAM_H