Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove unused typedefs.
[simgrid.git] / src / surf / host_clm03.hpp
1 /* Copyright (c) 2013-2015. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include <xbt/base.h>
8
9 #include "StorageImpl.hpp"
10 #include "cpu_interface.hpp"
11 #include "network_interface.hpp"
12 #include "src/surf/HostImpl.hpp"
13
14 #ifndef SURF_HOST_CLM03_HPP_
15 #define SURF_HOST_CLM03_HPP_
16
17 /***********
18  * Classes *
19  ***********/
20
21 namespace simgrid {
22 namespace surf {
23
24 class XBT_PRIVATE HostCLM03Model;
25
26 /*********
27  * Model *
28  *********/
29
30 class HostCLM03Model : public HostModel {
31 public:
32   double nextOccuringEvent(double now) override;
33   void updateActionsState(double now, double delta) override;
34 };
35 }
36 }
37
38 #endif /* SURF_HOST_CLM03_HPP_ */