Eclipse SUMO - Simulation of Urban MObility
GUIManipulator.h
Go to the documentation of this file.
1 /****************************************************************************/
2 // Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
3 // Copyright (C) 2001-2019 German Aerospace Center (DLR) and others.
4 // This program and the accompanying materials
5 // are made available under the terms of the Eclipse Public License v2.0
6 // which accompanies this distribution, and is available at
7 // http://www.eclipse.org/legal/epl-v20.html
8 // SPDX-License-Identifier: EPL-2.0
9 /****************************************************************************/
15 // Abstract GUI manipulation class
16 /****************************************************************************/
17 #ifndef GUIManipulator_h
18 #define GUIManipulator_h
19 
20 
21 // ===========================================================================
22 // included modules
23 // ===========================================================================
24 #include <config.h>
25 
26 #include <fx.h>
27 #include <string>
28 
29 
30 // ===========================================================================
31 // class declarations
32 // ===========================================================================
33 class GUIMainWindow;
34 
35 
36 // ===========================================================================
37 // class definitions
38 // ===========================================================================
42 class GUIManipulator : public FXDialogBox {
43  FXDECLARE(GUIManipulator)
44 public:
46  GUIManipulator(GUIMainWindow& app, const std::string& name,
47  int xpos, int ypos);
48 
50  virtual ~GUIManipulator();
51 
52 protected:
54 
55 };
56 
57 
58 #endif
59 
60 /****************************************************************************/
61 
FOX_CONSTRUCTOR
#define FOX_CONSTRUCTOR(classname)
Definition: config.h:13
GUIMainWindow
Definition: GUIMainWindow.h:46
GUIManipulator
Definition: GUIManipulator.h:42
GUIManipulator::GUIManipulator
GUIManipulator(GUIMainWindow &app, const std::string &name, int xpos, int ypos)
Constructor.
Definition: GUIManipulator.cpp:40
config.h
GUIManipulator::~GUIManipulator
virtual ~GUIManipulator()
Destructor.
Definition: GUIManipulator.cpp:44