00001 00002 // $Id: safe_bool.cci 1742 2010-11-04 14:51:56Z g0dil $ 00003 // 00004 // Copyright (C) 2007 00005 // Fraunhofer (FOKUS) 00006 // Competence Center NETwork research (NET), St. Augustin, GERMANY 00007 // Stefan Bund <g0dil@berlios.de> 00008 // 00009 // This program is free software; you can redistribute it and/or modify 00010 // it under the terms of the GNU General Public License as published by 00011 // the Free Software Foundation; either version 2 of the License, or 00012 // (at your option) any later version. 00013 // 00014 // This program is distributed in the hope that it will be useful, 00015 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00016 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00017 // GNU General Public License for more details. 00018 // 00019 // You should have received a copy of the GNU General Public License 00020 // along with this program; if not, write to the 00021 // Free Software Foundation, Inc., 00022 // 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 00023 00027 // Custom includes 00028 00029 #define prefix_ inline 00030 //-///////////////////////////////////////////////////////////////////////////////////////////////// 00031 00032 prefix_ void senf::safe_bool_base::this_type_does_not_support_comparisons() 00033 const 00034 {} 00035 00036 prefix_ senf::safe_bool_base::safe_bool_base() 00037 {} 00038 00039 prefix_ senf::safe_bool_base::safe_bool_base(const safe_bool_base&) 00040 {} 00041 00042 prefix_ senf::safe_bool_base& senf::safe_bool_base::operator=(const safe_bool_base&) 00043 { 00044 return *this; 00045 } 00046 00047 prefix_ senf::safe_bool_base::~safe_bool_base() 00048 {} 00049 00050 //-///////////////////////////////////////////////////////////////////////////////////////////////// 00051 #undef prefix_ 00052 00053 00054 // Local Variables: 00055 // mode: c++ 00056 // fill-column: 100 00057 // c-file-style: "senf" 00058 // indent-tabs-mode: nil 00059 // ispell-local-dictionary: "american" 00060 // compile-command: "scons -u test" 00061 // comment-column: 40 00062 // End: