Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/branches/gui/console/orxonox_console.h @ 1880

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

orxonox/branches/gui/console: made a little reaction.

File size: 417 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
14OrxonoxConsoleLog log;
15OrxonoxConsoleEntry entry;
16 
17class OrxonoxConsole {
18 
19 private:
20  GtkWidget *window;
21  GtkWidget *vbox_main;
22
23
24 public:
25  void createWindow(void);
26
27   
28
29};
30
31#endif
32
Note: See TracBrowser for help on using the repository browser.