blob: c91a5aa62e283b3aa97b41514aca5886714a41e0 (
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
|
/*
* Basic Filters
* (C) 1999-2007 Jack Lloyd
*
* Distributed under the terms of the Botan license
*/
#include <botan/basefilt.h>
namespace Botan {
/*
* Chain Constructor
*/
Chain::Chain(Filter* f1, Filter* f2, Filter* f3, Filter* f4)
{
if(f1) { attach(f1); incr_owns(); }
if(f2) { attach(f2); incr_owns(); }
if(f3) { attach(f3); incr_owns(); }
if(f4) { attach(f4); incr_owns(); }
}
/*
* Chain Constructor
*/
Chain::Chain(Filter* filters[], u32bit count)
{
for(u32bit j = 0; j != count; ++j)
if(filters[j])
{
attach(filters[j]);
incr_owns();
}
}
/*
* Fork Constructor
*/
Fork::Fork(Filter* f1, Filter* f2, Filter* f3, Filter* f4)
{
Filter* filters[4] = { f1, f2, f3, f4 };
set_next(filters, 4);
}
/*
* Fork Constructor
*/
Fork::Fork(Filter* filters[], u32bit count)
{
set_next(filters, count);
}
}
|