aboutsummaryrefslogtreecommitdiff
path: root/src/stable/filter.cpp
blob: f02fa1dcacab27dce84a307015beebbd5fb80107 (plain)
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
/*
 * Copyright (C) 2007-2023 Xagasoft, All rights reserved.
 *
 * This file is part of the libbu++ library and is released under the
 * terms of the license contained in the file LICENSE.
 */

#include "bu/filter.h"

Bu::Filter::Filter( Bu::Stream &rNext ) :
    rNext( rNext )
{
}

Bu::Filter::~Filter()
{
}

void Bu::Filter::close()
{
    stop();
    rNext.close();
}

Bu::size Bu::Filter::tell()
{
    return rNext.tell();
}

void Bu::Filter::seek( Bu::size offset )
{
    rNext.seek( offset );
}

void Bu::Filter::setPos( Bu::size pos )
{
    rNext.setPos( pos );
}

void Bu::Filter::setPosEnd( Bu::size pos )
{
    rNext.setPosEnd( pos );
}

bool Bu::Filter::isEos()
{
    return rNext.isEos();
}

bool Bu::Filter::isOpen()
{
    return rNext.isOpen();
}

bool Bu::Filter::canRead()
{
    return rNext.canRead();
}

bool Bu::Filter::canWrite()
{
    return rNext.canWrite();
}

bool Bu::Filter::isReadable()
{
    return rNext.isReadable();
}

bool Bu::Filter::isWritable()
{
    return rNext.isWritable();
}

bool Bu::Filter::isSeekable()
{
    return rNext.isSeekable();
}

bool Bu::Filter::isBlocking()
{
    return rNext.isBlocking();
}

void Bu::Filter::setBlocking( bool bBlocking )
{
    rNext.setBlocking( bBlocking );
}

void Bu::Filter::setSize( Bu::size )
{
}

void Bu::Filter::flush()
{
    rNext.flush();
}

Bu::size Bu::Filter::getSize() const
{
    return rNext.getSize();
}

Bu::size Bu::Filter::getBlockSize() const
{
    return rNext.getBlockSize();
}

Bu::String Bu::Filter::getLocation() const
{
    return rNext.getLocation();
}