00001 // $Header: /cvsroot/libcwd/libcwd/include/libcwd/class_always_channel.h,v 1.4 2004/06/03 12:23:07 libcw Exp $ 00002 // 00003 // Copyright (C) 2002 - 2004, by 00004 // 00005 // Carlo Wood, Run on IRC <carlo@alinoe.com> 00006 // RSA-1024 0x624ACAD5 1997-01-26 Sign & Encrypt 00007 // Fingerprint16 = 32 EC A7 B6 AC DB 65 A6 F6 F6 55 DD 1C DC FF 61 00008 // 00009 // This file may be distributed under the terms of the Q Public License 00010 // version 1.0 as appearing in the file LICENSE.QPL included in the 00011 // packaging of this file. 00012 // 00013 00018 #ifndef LIBCWD_CLASS_ALWAYS_CHANNEL_H 00019 #define LIBCWD_CLASS_ALWAYS_CHANNEL_H 00020 00021 #ifndef LIBCWD_CONFIG_H 00022 #include <libcwd/config.h> 00023 #endif 00024 #ifndef LIBCWD_CONTROL_FLAG_H 00025 #include <libcwd/control_flag.h> 00026 #endif 00027 00028 namespace libcwd { 00029 00030 //=================================================================================================== 00031 // class always_channel_ct 00032 // 00033 // A debug channel with a special characteristic: It is always turned 00034 // and cannot be turned off. 00035 // 00036 00037 class always_channel_ct { 00038 public: 00039 static char const label[]; 00040 }; 00041 00042 } // namespace libcwd 00043 00044 #endif // LIBCWD_CLASS_ALWAYS_CHANNEL_H 00045