Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
not needed now
[simgrid.git] / src / cxx / Msg.hpp
1 /*\r
2  * Msg.hpp\r
3  *\r
4  * This file contains the declaration of the wrapper class of the native MSG task type.\r
5  *\r
6  * Copyright 2006,2007 Martin Quinson, Malek Cherier           \r
7  * All right reserved. \r
8  *\r
9  * This program is free software; you can redistribute \r
10  * it and/or modify it under the terms of the license \r
11  *(GNU LGPL) which comes with this package. \r
12  *\r
13  */  \r
14  \r
15 #ifndef MSG_HPP\r
16 #define MSG_HPP\r
17 \r
18 // Compilation C++ recquise\r
19 #ifndef __cplusplus\r
20         #error Msg.hpp requires C++ compilation (use a .cxx suffix)\r
21 #endif\r
22 \r
23 #include <MsgException.hpp>\r
24 #include <InvalidArgumentException.hpp>\r
25 #include <LogicException.hpp>\r
26 \r
27 \r
28 namespace SimGrid\r
29 {\r
30         namespace Msg\r
31         {\r
32                 class MsgException;\r
33                 class InvalidArgumentException;\r
34                 class LogicException;\r
35                 \r
36                 /*! \brief init() - Initialize MSG (This function must be called at the begining of each simulation).\r
37                  *\r
38                  * \param argv                  A list of arguments.\r
39                  * \param argc                  The number of arguments of the list.\r
40                  */\r
41                 SIMGRIDX_EXPORT void init(int argc, char** argv);\r
42                 \r
43                 /*! \brief finalize() - Finalize MSG (This function must be called at the end of each simulation).\r
44                  *\r
45                  * \exception                   If this function fails, it throws a exception describing the cause of the failure.\r
46                  */\r
47                 SIMGRIDX_EXPORT void finalize(void)\r
48                 throw (MsgException);\r
49                 \r
50                 /*! \brief info() - Display information (using xbt log format).\r
51                  *\r
52                  * \param s                             The information to display.\r
53                  */\r
54                 SIMGRIDX_EXPORT void info(const char* s);\r
55 \r
56                 /*! \brief getClock() -  Retrieve the simulation time\r
57                  *\r
58                  * \return                              The current simulation time.\r
59                  */\r
60                 SIMGRIDX_EXPORT double getClock(void);\r
61 \r
62 \r
63                 SIMGRIDX_EXPORT void setMaxChannelNumber(int number)\r
64                 throw(InvalidArgumentException, LogicException);\r
65 \r
66                 SIMGRIDX_EXPORT int getMaxChannelNumber(void);\r
67                 \r
68         } // namespace Msg\r
69 } // namespace SimGrid\r
70 \r
71 #endif // !MSG_HPP\r