Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
s/NULL/nullptr/ in our C++ codebase
[simgrid.git] / src / xbt / ex_interface.h
1 /* ex -- exception handling                                                 */
2 /* This file is to loaded in any location defining exception handlers       */
3 /* (such as context.c), to exchange them.        */
4
5 /* Copyright (c) 2006-2007, 2009-2010, 2012-2014. The SimGrid Team.
6  * All rights reserved.                                                     */
7
8 /* This program is free software; you can redistribute it and/or modify it
9  * under the terms of the license (GNU LGPL) which comes with this package. */
10
11 #ifndef _XBT_EX_INTERFACE_H_
12 #define _XBT_EX_INTERFACE_H_
13
14 #include <cstddef>
15
16 #include <vector>
17 #include <string>
18
19 #include "xbt/base.h"
20 #include "xbt/backtrace.h"
21
22 namespace simgrid {
23 namespace xbt {
24
25 }
26 }
27
28 #endif                          /* _XBT_EX_INTERFACE_H_ */