Subversion Repositories gelsvn

Rev

Rev 597 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 597 Rev 601
Line 8... Line 8...
8
 * @file   Console.cpp
8
 * @file   Console.cpp
9
 * @author Anders Wang Kristensen <awk@imm.dtu.dk>
9
 * @author Anders Wang Kristensen <awk@imm.dtu.dk>
10
 * @date   Fri Oct 22 18:36:58 2011
10
 * @date   Fri Oct 22 18:36:58 2011
11
 */
11
 */
12
 
12
 
13
#include <GLGraphics/Console.h>
13
#include "../GLGraphics/Console.h"
14
#include <GLGraphics/gel_glut.h>
14
#include "../GLGraphics/gel_glut.h"
15
 
15
 
16
#include <cstdarg>
16
#include <cstdarg>
17
#include <set>
17
#include <set>
18
#include <iostream> //cerr
18
#include <iostream> //cerr
19
#include <iterator> //back_inserter
19
#include <iterator> //back_inserter
20
#include <fstream>
20
#include <fstream>
21
#include <utility> //min
21
#include <utility> //min
22
 
22
 
23
#include <GLGraphics/stb_image_aug.h>
23
#include "../GLGraphics/stb_image_aug.h"
24
 
24
 
25
static const char* history_filename = "history.txt";
25
static const char* history_filename = "history.txt";
26
 
26
 
27
static const int line_spacing = 13;
27
static const int line_spacing = 13;
28
static const int char_spacing = 7;
28
static const int char_spacing = 7;