Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/branches/nico/src/console/orxonox_console.h @ 3238

Last change on this file since 3238 was 3238, checked in by bensch, 20 years ago

orxonox/branches: updated branches: buerli, nico, sound. And moved bezierTrack to old.bezierTrack. Conflicts resolved in a usefull order.
Conflics mostly resolved in favor of trunk
merge.

File size: 434 bytes
Line 
1#ifndef ORXONOX_CONSOLE_H
2#define ORXONOX_CONSOLE_H
3
4/* standard headers */
5#include <stdio.h>
6
7/* GTK headers */
8#include <gtk/gtk.h> 
9
10/* other headers */
11#include "orxonox_console_entry.h"
12#include "orxonox_console_log.h"
13
14int verbose;
15 
16class OrxonoxConsole {
17 
18 private:
19  GtkWidget *window;
20  GtkWidget *vbox_main;
21  OrxonoxConsoleLog log;
22  OrxonoxConsoleEntry entry;
23
24
25 public:
26  void createWindow(void);
27
28   
29
30};
31
32#endif
33
Note: See TracBrowser for help on using the repository browser.