]> SALOME platform Git repositories - modules/kernel.git/blob - src/Launcher/Launcher_Utils.hxx
Salome HOME
merge from branch BR_V511_PR 15 12 2009
[modules/kernel.git] / src / Launcher / Launcher_Utils.hxx
1 //  Copyright (C) 2009 CEA/DEN, EDF R&D
2 //
3 //  This library is free software; you can redistribute it and/or
4 //  modify it under the terms of the GNU Lesser General Public
5 //  License as published by the Free Software Foundation; either
6 //  version 2.1 of the License.
7 //
8 //  This library is distributed in the hope that it will be useful,
9 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
10 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 //  Lesser General Public License for more details.
12 //
13 //  You should have received a copy of the GNU Lesser General Public
14 //  License along with this library; if not, write to the Free Software
15 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19 // Author: André RIBES - EDF R&D
20
21 #ifndef __LAUNCHER_UTILS_HXX__
22 #define __LAUNCHER_UTILS_HXX__
23
24 #include <iostream>
25
26 #ifdef WIN32
27 # if defined LAUNCHER_EXPORTS || defined Launcher_EXPORTS
28 #  define LAUNCHER_EXPORT __declspec(dllexport)
29 # else
30 #  define LAUNCHER_EXPORT __declspec(dllimport)
31 # endif
32 #else
33 # define LAUNCHER_EXPORT
34 #endif
35
36 // MESSAGES
37 #define LAUNCHER_MESS_INIT(deb) std::cerr << deb
38 #define LAUNCHER_MESS_BEGIN(deb) LAUNCHER_MESS_INIT(deb)<<__FILE__ <<" ["<<__LINE__<<"] : "
39 #define LAUNCHER_MESS_END std::endl;
40 #define LAUNCHER_INFOS(msg) {LAUNCHER_MESS_BEGIN("- Trace ") << msg << LAUNCHER_MESS_END}
41
42 #if defined(_DEBUG_) || defined(_DEBUG)
43 #define LAUNCHER_MESSAGE(msg) {LAUNCHER_MESS_BEGIN("- Trace ") << msg << LAUNCHER_MESS_END}
44 #else /* ifdef _DEBUG_*/
45 #define LAUNCHER_MESSAGE(msg) {}
46 #endif /* ifdef _DEBUG_*/
47
48 class LAUNCHER_EXPORT LauncherException
49 {
50 public:
51   const std::string msg;
52
53   LauncherException(const std::string m) : msg(m) {}
54 };
55
56
57 #endif