1// $Header$
2//
3// Copyright (C) 2000 - 2004, by
4//
5// Carlo Wood, Run on IRC <carlo@alinoe.com>
6// RSA-1024 0x624ACAD5 1997-01-26                    Sign & Encrypt
7// Fingerprint16 = 32 EC A7 B6 AC DB 65 A6  F6 F6 55 DD 1C DC FF 61
8//
9// This file may be distributed under the terms of the Q Public License
10// version 1.0 as appearing in the file LICENSE.QPL included in the
11// packaging of this file.
12//
13
14#ifndef LIBCWD_CLASS_CONTINUED_CHANNEL_INL
15#define LIBCWD_CLASS_CONTINUED_CHANNEL_INL
16
17#ifndef LIBCWD_CLASS_CONTINUED_CHANNEL_H
18#include <libcwd/class_continued_channel.h>
19#endif
20#ifndef LIBCWD_CONTROL_FLAG_H
21#include <libcwd/control_flag.h>
22#endif
23
24namespace libcwd {
25
26inline
27continued_channel_ct::continued_channel_ct(control_flag_t maskbit)
28{
29  NS_initialize(maskbit);
30}
31
32inline
33control_flag_t
34continued_channel_ct::get_maskbit(void) const
35{
36  return WNS_maskbit;
37}
38
39} // namespace libcwd
40
41#endif // LIBCWD_CLASS_CONTINUED_CHANNEL_INL
42