LORENE
c_est_pas_fait.C
1
/*
2
* Stops the execution. In debug mode: ask for continuation. In normal mode:
3
* abort the main program.
4
*
5
*/
6
7
/*
8
* Copyright (c) 1999-2000 Jean-Alain Marck
9
*
10
* This file is part of LORENE.
11
*
12
* LORENE is free software; you can redistribute it and/or modify
13
* it under the terms of the GNU General Public License as published by
14
* the Free Software Foundation; either version 2 of the License, or
15
* (at your option) any later version.
16
*
17
* LORENE is distributed in the hope that it will be useful,
18
* but WITHOUT ANY WARRANTY; without even the implied warranty of
19
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20
* GNU General Public License for more details.
21
*
22
* You should have received a copy of the GNU General Public License
23
* along with LORENE; if not, write to the Free Software
24
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25
*
26
*/
27
28
29
30
31
/*
32
* $Id: c_est_pas_fait.C,v 1.7 2016/12/05 16:18:11 j_novak Exp $
33
* $Log: c_est_pas_fait.C,v $
34
* Revision 1.7 2016/12/05 16:18:11 j_novak
35
* Suppression of some global variables (file names, loch, ...) to prevent redefinitions
36
*
37
* Revision 1.6 2014/10/13 08:53:31 j_novak
38
* Lorene classes and functions now belong to the namespace Lorene.
39
*
40
* Revision 1.5 2014/10/06 15:16:11 j_novak
41
* Modified #include directives to use c++ syntax.
42
*
43
* Revision 1.4 2008/08/19 06:42:01 j_novak
44
* Minor modifications to avoid warnings with gcc 4.3. Most of them concern
45
* cast-type operations, and constant strings that must be defined as const char*
46
*
47
* Revision 1.3 2002/10/16 14:37:12 j_novak
48
* Reorganization of #include instructions of standard C++, in order to
49
* use experimental version 3 of gcc.
50
*
51
* Revision 1.2 2001/11/29 16:17:54 e_gourgoulhon
52
* minor modifs
53
*
54
* Revision 1.1.1.1 2001/11/20 15:19:29 e_gourgoulhon
55
* LORENE
56
*
57
* Revision 2.0 1999/02/15 10:42:45 hyc
58
* *** empty log message ***
59
*
60
* Revision 2.0 1999/01/15 09:10:39 hyc
61
* *** empty log message ***
62
*
63
* Revision 2.0 1999/01/15 09:10:39 hyc
64
* *** empty log message ***
65
*
66
*
67
* $Header: /cvsroot/Lorene/C++/Source/Non_class_members/Utilities/c_est_pas_fait.C,v 1.7 2016/12/05 16:18:11 j_novak Exp $
68
*
69
*/
70
71
// headers du C++
72
#include"headcpp.h"
73
#include <cstdlib>
74
75
namespace
Lorene
{
76
void
c_est_pas_fait
(
const
char
* fichier) {
77
78
#ifdef NDEBUG
79
cout.flush() ;
80
cout <<
"Routine not ready in "
<< fichier <<
" !"
<< endl ;
81
abort() ;
82
#else
83
cout.flush() ;
84
cout <<
"Routine not ready in "
<< fichier <<
" !"
<< endl ;
85
cout <<
"Next = 'return', abort = '0'"
<< endl ;
86
char
c ;
87
cin.get(c) ;
88
if
(c ==
'0'
) {
89
abort() ;
90
}
91
#endif
92
}
93
}
Lorene
Lorene prototypes.
Definition:
app_hor.h:67
Lorene::c_est_pas_fait
void c_est_pas_fait(const char *)
Helpful function to say something is not implemented yet.
Definition:
c_est_pas_fait.C:76
srv
www
html
Lorene
C++
Source
Non_class_members
Utilities
c_est_pas_fait.C
Generated by
1.8.14