ROOT
git-r3/HEAD
Reference Guide
Loading...
Searching...
No Matches
cppmain.cxx
Go to the documentation of this file.
1
// @(#)root/main:$Id$
2
// Author: Masaharu Goto 16/05/2000
3
/* /% C++ %/ */
4
/***********************************************************************
5
* cint (C/C++ interpreter)
6
************************************************************************
7
* Source file main/G__cppmain.C
8
************************************************************************
9
* Description:
10
* C++ version main function
11
************************************************************************
12
* Copyright(c) 1995~1999 Masaharu Goto (MXJ02154@niftyserve.or.jp)
13
*
14
* Permission to use, copy, modify and distribute this software and its
15
* documentation for non-commercial purpose is hereby granted without fee,
16
* provided that the above copyright notice appear in all copies and
17
* that both that copyright notice and this permission notice appear
18
* in supporting documentation. The author makes no
19
* representations about the suitability of this software for any
20
* purpose. It is provided "as is" without express or implied warranty.
21
************************************************************************/
22
#include <cstdio>
23
24
extern
"C"
{
25
extern
void
G__setothermain
(
int
othermain);
26
extern
int
G__main
(
int
argc,
char
**argv);
27
}
28
29
int
main
(
int
argc,
char
**argv)
30
{
31
G__setothermain
(0);
32
return
(
G__main
(argc,argv));
33
}
G__main
int G__main(int argc, char **argv)
G__setothermain
void G__setothermain(int othermain)
main
int main()
Definition
functioncalls_main.cxx:68
main
src
cppmain.cxx
ROOTgit-r3/HEAD - Reference Guide Generated on
(GVA Time) using Doxygen 1.16.1