kspaceFirstOrder3D-CUDA  1.1
The CUDA/C++ implementation of the k-wave toolbox for the time-domain simulation of acoustic wave fields in 3D
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ErrorMessagesWindows.h
Go to the documentation of this file.
1 /**
2  * @file ErrorMessagesWindows.h
3  *
4  * @author Jiri Jaros \n
5  * Faculty of Information Technology \n
6  * Brno University of Technology \n
7  * jarosjir@fit.vutbr.cz
8  *
9  * @brief The header file containing windows specific error messages.
10  *
11  * @version kspaceFirstOrder3D 3.4
12  *
13  * @date 13 July 2016, 12:27 (created) \n
14  * 29 July 2016, 16:43 (revised)
15  *
16  * @section License
17  * This file is part of the C++ extension of the k-Wave Toolbox
18  * (http://www.k-wave.org).\n Copyright (C) 2016 Jiri Jaros and Bradley Treeby.
19  *
20  * This file is part of the k-Wave. k-Wave is free software: you can redistribute it and/or modify
21  * it under the terms of the GNU Lesser General Public License as published by the Free Software
22  * Foundation, either version 3 of the License, or (at your option) any later version.
23  *
24  * k-Wave is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
25  * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser
26  * General Public License for more details.
27  *
28  * You should have received a copy of the GNU Lesser General Public License along with k-Wave.
29  * If not, see http://www.gnu.org/licenses/.
30  */
31 
32 
33 #ifndef ERROR_MESSAGES_WINDOWS_H
34 #define ERROR_MESSAGES_WINDOWS_H
35 
36 /**
37  * @typedef TErrorMessage
38  * @brief Datatype for error messages.
39  * @details Datatype for error messages.
40  */
41 typedef const std::string TErrorMessage;
42 
43 /// Error message header
45  "+---------------------------------------------------------------+\n"
46  "| !!! K-Wave experienced a fatal error !!! |\n"
47  "+---------------------------------------------------------------+\n";
48 
49 /// Error message tailer
51  "+---------------------------------------------------------------+\n"
52  "| Execution terminated |\n"
53  "+---------------------------------------------------------------+\n";
54 
55 
56 #endif /* ERROR_MESSAGES_WINDOWS_H */
57 
58 
59 
60 
TErrorMessage ERR_FMT_HEAD
Error message header.
const std::string TErrorMessage
Datatype for error messages.
TErrorMessage ERR_FMT_TAIL
Error message tailer.