Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Kill old $Id$ command dating from CVS
[simgrid.git] / include / gras.h
1 /* gras.h - Public interface to the GRAS                                    */
2
3 /* Copyright (c) 2003, 2004 Martin Quinson. All rights reserved.            */
4
5 /* This program is free software; you can redistribute it and/or modify it
6  * under the terms of the license (GNU LGPL) which comes with this package. */
7
8 #ifndef GRAS_H
9 #define GRAS_H
10
11 #include <xbt.h>                /* our toolbox */
12 #include <xbt/ex.h>             /* There's a whole bunch of exception handling in GRAS */
13
14 #include <gras/process.h>
15 #include <gras/module.h>
16 #include <gras/virtu.h>
17 #include <gras/emul.h>
18
19 #include <gras/transport.h>
20 #include <gras/datadesc.h>
21 #include <gras/messages.h>
22 #include <gras/timer.h>
23
24 XBT_PUBLIC(void) gras_init(int *argc, char **argv);
25 XBT_PUBLIC(void) gras_exit(void);
26
27 #endif /* GRAS_H */