00001 // LICENSE: (Please see the file COPYING for details) 00002 // 00003 // NUS - Nemesis Utilities System: A C++ application development framework 00004 // Copyright (C) 2006, 2007 Otavio Rodolfo Piske 00005 // 00006 // This file is part of NUS 00007 // 00008 // This library is free software; you can redistribute it and/or 00009 // modify it under the terms of the GNU Lesser General Public 00010 // License as published by the Free Software Foundation version 2.1 00011 // of the License. 00012 // 00013 // This library is distributed in the hope that it will be useful, 00014 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00015 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00016 // Lesser General Public License for more details. 00017 // 00018 // You should have received a copy of the GNU Lesser General Public 00019 // License along with this library; if not, write to the Free Software 00020 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 00021 // 00022 #include "nwarning.h" 00023 00024 NWarning::NWarning(void) 00025 : NBaseOutput() 00026 {} 00027 00028 00029 NWarning::~NWarning(void) { 00030 NBaseOutput::print(" ***"); 00031 NBaseOutput::print(RESET); 00032 NBaseOutput::print("\n"); 00033 } 00034 00035 00036 NWarning NWarning::print(void) { 00037 NWarning tmp; 00038 NBaseOutput::print(RED); 00039 NBaseOutput::print("*** "); 00040 return tmp; 00041 } 00042 00043 00044 NWarning &NWarning::operator<<(nint32 val) { 00045 NBaseOutput::print(val); 00046 return *this; 00047 } 00048 00049 NWarning &NWarning::operator<<(nuint32 val) { 00050 NBaseOutput::print(val); 00051 return *this; 00052 } 00053 00054 00055 NWarning &NWarning::operator<<(nint64 val) { 00056 NBaseOutput::print(val); 00057 return *this; 00058 } 00059 00060 NWarning &NWarning::operator<<(nuint64 val) { 00061 NBaseOutput::print(val); 00062 return *this; 00063 } 00064 00065 00066 NWarning &NWarning::operator<<(double d) { 00067 NBaseOutput::print(d); 00068 return *this; 00069 } 00070 00071 00072 NWarning &NWarning::operator<<(char c) { 00073 NBaseOutput::print(c); 00074 return *this; 00075 } 00076 00077 NWarning &NWarning::operator<<(const NString &str) { 00078 NBaseOutput::print(str); 00079 return *this; 00080 } 00081 00082 00083 NWarning &NWarning::operator<<(const void *ptr) { 00084 NBaseOutput::print(ptr); 00085 return *this; 00086 } 00087 00088 00089 NWarning &NWarning::operator<<(const char *str) { 00090 NBaseOutput::print(str); 00091 return *this; 00092 }