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_ids.h" 00038 00039 namespace ReChannel { 00040 00041 const char RC_ID_RELNAME_SYNTAX_ERROR_[] 00042 = RC_REPORT_MSG_TYPE "/relname_syntax_error"; 00043 00044 const char RC_ID_CONTROL_CONFLICT_[] 00045 = RC_REPORT_MSG_TYPE "/control/conflict"; 00046 00047 const char RC_ID_SWITCH_BINDING_ERROR_[] 00048 = RC_REPORT_MSG_TYPE "/switch/binding_error"; 00049 00050 const char RC_ID_SWITCH_INVALID_FILTER_[] 00051 = RC_REPORT_MSG_TYPE "/switch/invalid_filter"; 00052 00053 const char RC_ID_SWITCH_CONFLICT_[] 00054 = RC_REPORT_MSG_TYPE "/switch/conflict"; 00055 00056 const char RC_ID_TIME_CONSUMED_WARNING_[] 00057 = RC_REPORT_MSG_TYPE "/time_consumed"; 00058 00059 const char RC_ID_DELTAS_CONSUMED_WARNING_[] 00060 = RC_REPORT_MSG_TYPE "/delta_cycles_consumed"; 00061 00062 const char RC_ID_PORTMAP_INIT_ERROR_[] 00063 = RC_REPORT_MSG_TYPE "/portmap/init_error"; 00064 00065 const char RC_ID_PORTMAP_INCOMPATIBLE_ERROR_[] 00066 = RC_REPORT_MSG_TYPE "/portmap/incompatible_error"; 00067 00068 const char RC_ID_SWITCH_CONNECTOR_INIT_ERROR_[] 00069 = RC_REPORT_MSG_TYPE "/switch_connector/init_error"; 00070 00071 const char RC_ID_SWITCH_CONNECTOR_BINDING_ERROR_[] 00072 = RC_REPORT_MSG_TYPE "/switch_connector/binding_error"; 00073 00074 const char RC_ID_SWITCH_CONNECTOR_INCOMPATIBLE_ERROR_[] 00075 = RC_REPORT_MSG_TYPE "/switch_connector/incompatible_error"; 00076 00077 } // namespace ReChannel 00078 00079 // 00080 // $Id: rc_report_ids.cpp,v 1.7 2007/10/09 21:47:01 felke Exp $ 00081 // $Source: /var/cvs/projekte/ReChannel-v2/src/ReChannel/core/rc_report_ids.cpp,v $ 00082 //