OpenCOVER
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
coTranslator.h
Go to the documentation of this file.
1 /* This file is part of COVISE.
2 
3  You can use it under the terms of the GNU Lesser General Public License
4  version 2.1 or later, see lgpl-2.1.txt.
5 
6  * License: LGPL 2+ */
7 
8 //--------------------------------------------------------------------------
9 //--------------------------------------------------------------------------
10 //
11 // OpenCOVER kernel
12 //
13 //
14 // Visenso GmbH
15 // 2012
16 //
17 // $Id$
18 //--------------------------------------------------------------------------
19 //--------------------------------------------------------------------------
20 
21 #pragma once
22 
23 #ifndef __CO_TRANSLATOR__
24 #define __CO_TRANSLATOR__
25 
26 //--------------------------------------------------------------------------
27 //--------------------------------------------------------------------------
28 
29 #include <string>
30 
31 //--------------------------------------------------------------------------
32 //--------------------------------------------------------------------------
33 
40 class COVEREXPORT coTranslator
41 {
42 public:
51  static std::string coTranslate(const std::string &msg);
52 
53  static std::string translatePath(const std::string &path);
54 };
55 
56 //--------------------------------------------------------------------------
57 //--------------------------------------------------------------------------
58 
59 #endif //__CO_TRANSLATOR__
Definition: coTranslator.h:40