tinyxmlerror.cpp
Go to the documentation of this file.
1 /***************************************************************************
2  tag: Peter Soetens do nov 2 13:06:02 CET 2006 tinyxmlerror.cpp
3 
4  tinyxmlerror.cpp - description
5  -------------------
6  begin : do november 02 2006
7  copyright : (C) 2006 Peter Soetens
8  email : peter.soetens@gmail.com
9 
10  ***************************************************************************
11  * This library is free software; you can redistribute it and/or *
12  * modify it under the terms of the GNU General Public *
13  * License as published by the Free Software Foundation; *
14  * version 2 of the License. *
15  * *
16  * As a special exception, you may use this file as part of a free *
17  * software library without restriction. Specifically, if other files *
18  * instantiate templates or use macros or inline functions from this *
19  * file, or you compile this file and link it with other files to *
20  * produce an executable, this file does not by itself cause the *
21  * resulting executable to be covered by the GNU General Public *
22  * License. This exception does not however invalidate any other *
23  * reasons why the executable file might be covered by the GNU General *
24  * Public License. *
25  * *
26  * This library is distributed in the hope that it will be useful, *
27  * but WITHOUT ANY WARRANTY; without even the implied warranty of *
28  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
29  * Lesser General Public License for more details. *
30  * *
31  * You should have received a copy of the GNU General Public *
32  * License along with this library; if not, write to the Free Software *
33  * Foundation, Inc., 59 Temple Place, *
34  * Suite 330, Boston, MA 02111-1307 USA *
35  * *
36  ***************************************************************************/
37 
38 
39 /*
40 www.sourceforge.net/projects/tinyxml
41 Original code (2.0 and earlier )copyright (c) 2000-2002 Lee Thomason (www.grinninglizard.com)
42 
43 This software is provided 'as-is', without any express or implied
44 warranty. In no event will the authors be held liable for any
45 damages arising from the use of this software.
46 
47 Permission is granted to anyone to use this software for any
48 purpose, including commercial applications, and to alter it and
49 redistribute it freely, subject to the following restrictions:
50 
51 1. The origin of this software must not be misrepresented; you must
52 not claim that you wrote the original software. If you use this
53 software in a product, an acknowledgment in the product documentation
54 would be appreciated but is not required.
55 
56 2. Altered source versions must be plainly marked as such, and
57 must not be misrepresented as being the original software.
58 
59 3. This notice may not be removed or altered from any source
60 distribution.
61 */
62 
63 #include "tinyxml.h"
64 
65 // The goal of the seperate error file is to make the first
66 // step towards localization. tinyxml (currently) only supports
67 // english error messages, but the could now be translated.
68 //
69 // It also cleans up the code a bit.
70 //
71 
72 namespace RTT { namespace marsh {
73 
74 const char* TiXmlBase::errorString[ TIXML_ERROR_STRING_COUNT ] =
75 {
76  "No error",
77  "Error",
78  "Failed to open file",
79  "Memory allocation failed.",
80  "Error parsing Element.",
81  "Failed to read Element name",
82  "Error reading Element value.",
83  "Error reading Attributes.",
84  "Error: empty tag.",
85  "Error reading end tag.",
86  "Error parsing Unknown.",
87  "Error parsing Comment.",
88  "Error parsing Declaration.",
89  "Error document empty.",
90  "Error null (0) or unexpected EOF found in input stream.",
91  "Error parsing CDATA.",
92 };
93 
94 }}
Contains TaskContext, Activity, OperationCaller, Operation, Property, InputPort, OutputPort, Attribute.
Definition: Activity.cpp:53
static const char * errorString[TIXML_ERROR_STRING_COUNT]
Definition: tinyxml.h:373


rtt
Author(s): RTT Developers
autogenerated on Tue Jun 25 2019 19:33:37