00001 // vim:set et sts=4 ts=4 tw=75 sw=4 ai ci cin cino=g0,t0: 00002 /* 00003 * Copyright (C) 2007, Technical Computer Science Group, 00004 * University of Bonn 00005 * 00006 * This file is part of the ReChannel library. 00007 * 00008 * The ReChannel library is free software; you can redistribute it and/or 00009 * modify it under the terms of the GNU General Public License as 00010 * published by the Free Software Foundation; either version 2 of the 00011 * License, or (at your option) any later version. 00012 * 00013 * This library is distributed in the hope that it will be 00014 * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of 00015 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00016 * General Public License for more details. 00017 * 00018 * You should have received a copy of the GNU General Public License 00019 * along with this library; see the file COPYING. If not, write to the 00020 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, 00021 * Boston, MA 02110-1301, USA. 00022 * 00023 * Authors: Andreas Raabe and Armin Felke. Implementation by Armin Felke. 00024 * {raabe, felke}@cs.uni-bonn.de 00025 */ 00037 #include "rc_report.h" 00038 00039 namespace ReChannel { 00040 00041 // predefined message types 00042 const char RC_ID_INTERNAL_ERROR_[] = 00043 RC_REPORT_MSG_TYPE "/internal_error"; 00044 00045 const char RC_ID_UNKNOWN_ERROR_[] = 00046 RC_REPORT_MSG_TYPE "/unknown_error"; 00047 00048 const char RC_ID_NOT_IMPLEMENTED_[] = 00049 RC_REPORT_MSG_TYPE "/not_implemented"; 00050 00051 const char RC_ID_OUT_OF_BOUNDS_[] = 00052 RC_REPORT_MSG_TYPE "/out_of_bounds"; 00053 00054 const char RC_ID_NULL_POINTER_[] = 00055 RC_REPORT_MSG_TYPE "/null_pointer"; 00056 00057 const char RC_ID_INVALID_USAGE_[] = 00058 RC_REPORT_MSG_TYPE "/invalid_usage"; 00059 00060 const char RC_ID_DUPLICATE_ENTRY_[] = 00061 RC_REPORT_MSG_TYPE "/duplicate_entry"; 00062 00063 const char RC_ID_ASSERTION_FAILED_[] = 00064 RC_REPORT_MSG_TYPE "/assertion_failed"; 00065 00066 } // namespace ReChannel 00067 00068 // 00069 // $Id: rc_report.cpp,v 1.4 2007/10/09 00:22:26 felke Exp $ 00070 // $Source: /var/cvs/projekte/ReChannel-v2/src/ReChannel/util/rc_report.cpp,v $ 00071 // 00072