SUMO - Simulation of Urban MObility
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
MSEmissionExport.h
Go to the documentation of this file.
1 /****************************************************************************/
5 // Realises dumping Emission Data
6 /****************************************************************************/
7 // SUMO, Simulation of Urban MObility; see http://sumo-sim.org/
8 // Copyright (C) 2001-2013 DLR (http://www.dlr.de/) and contributors
9 /****************************************************************************/
10 //
11 // This file is part of SUMO.
12 // SUMO is free software: you can redistribute it and/or modify
13 // it under the terms of the GNU General Public License as published by
14 // the Free Software Foundation, either version 3 of the License, or
15 // (at your option) any later version.
16 //
17 /****************************************************************************/
18 #ifndef MSEmissionExport_h
19 #define MSEmissionExport_h
20 
21 
22 // ===========================================================================
23 // included modules
24 // ===========================================================================
25 #ifdef _MSC_VER
26 #include <windows_config.h>
27 #else
28 #include <config.h>
29 #endif
30 
31 #include <utils/common/SUMOTime.h>
32 
33 
34 // ===========================================================================
35 // class declarations
36 // ===========================================================================
37 class OutputDevice;
38 class MSEdgeControl;
39 class MSEdge;
40 class MSLane;
41 
42 
43 // ===========================================================================
44 // class definitions
45 // ===========================================================================
56 public:
65  static void write(OutputDevice& of, SUMOTime timestep);
66 
67 
68 private:
71 
74 
75 };
76 
77 
78 #endif
79 
80 /****************************************************************************/