-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputstrm.hpp
47 lines (41 loc) · 1.31 KB
/
outputstrm.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*
* outputstream.h: Base Class for output
*
*
* Copyright (C) 2001 Andrew Stevens <[email protected]>
*
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of version 2 of the GNU General Public License
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#ifndef __OUTPUTSTRM_H__
#define __OUTPUTSTRM_H__
class OutputStream
{
public:
OutputStream() :
segment_num( 1 ),
segment_len( 0 )
{}
virtual ~OutputStream() {}
virtual int Open( ) = 0;
virtual void Close() = 0;
virtual uint64_t SegmentSize( ) = 0;
virtual void NextSegment() = 0;
virtual void Write(uint8_t *data, unsigned int len) = 0;
int SegmentNum() const { return segment_num; }
protected:
int segment_num;
uint64_t segment_len;
};
#endif /* __OUTPUTSTRM_H__ */