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
29char c_est_pas_fait_C[] = "$Header: /cvsroot/Lorene/C++/Source/Non_class_members/Utilities/c_est_pas_fait.C,v 1.6 2014/10/13 08:53:31 j_novak Exp $" ;
30
31/*
32 * $Id: c_est_pas_fait.C,v 1.6 2014/10/13 08:53:31 j_novak Exp $
33 * $Log: c_est_pas_fait.C,v $
34 * Revision 1.6 2014/10/13 08:53:31 j_novak
35 * Lorene classes and functions now belong to the namespace Lorene.
36 *
37 * Revision 1.5 2014/10/06 15:16:11 j_novak
38 * Modified #include directives to use c++ syntax.
39 *
40 * Revision 1.4 2008/08/19 06:42:01 j_novak
41 * Minor modifications to avoid warnings with gcc 4.3. Most of them concern
42 * cast-type operations, and constant strings that must be defined as const char*
43 *
44 * Revision 1.3 2002/10/16 14:37:12 j_novak
45 * Reorganization of #include instructions of standard C++, in order to
46 * use experimental version 3 of gcc.
47 *
48 * Revision 1.2 2001/11/29 16:17:54 e_gourgoulhon
49 * minor modifs
50 *
51 * Revision 1.1.1.1 2001/11/20 15:19:29 e_gourgoulhon
52 * LORENE
53 *
54 * Revision 2.0 1999/02/15 10:42:45 hyc
55 * *** empty log message ***
56 *
57 * Revision 2.0 1999/01/15 09:10:39 hyc
58 * *** empty log message ***
59 *
60 * Revision 2.0 1999/01/15 09:10:39 hyc
61 * *** empty log message ***
62 *
63 *
64 * $Header: /cvsroot/Lorene/C++/Source/Non_class_members/Utilities/c_est_pas_fait.C,v 1.6 2014/10/13 08:53:31 j_novak Exp $
65 *
66 */
67
68// headers du C++
69#include"headcpp.h"
70#include <cstdlib>
71
72namespace Lorene {
73void c_est_pas_fait(const char * fichier) {
74
75#ifdef NDEBUG
76 cout.flush() ;
77 cout << "Routine not ready in " << fichier << " !" << endl ;
78 abort() ;
79#else
80 cout.flush() ;
81 cout << "Routine not ready in " << fichier << " !" << endl ;
82 cout << "Next = 'return', abort = '0'" << endl ;
83 char c ;
84 cin.get(c) ;
85 if (c == '0') {
86 abort() ;
87 }
88#endif
89}
90}
Time evolution with partial storage (*** under development ***).
Definition evolution.h:371
void c_est_pas_fait(const char *)
Helpful function to say something is not implemented yet.
Lorene prototypes.
Definition app_hor.h:64