Subversion Repositories gelsvn

Rev

Rev 667 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 667 Rev 676
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
#define _CRT_SECURE_NO_WARNINGS
-
 
14
 
-
 
15
#include "Console.h"
13
#include "../GLGraphics/Console.h"
16
#include "../GL/glew.h"
14
#include "../GL/glew.h"
17
#include <cstdarg>
15
#include <cstdarg>
18
#include <set>
16
#include <set>
19
#include <iostream> //cerr
17
#include <iostream> //cerr
20
#include <iterator> //back_inserter
18
#include <iterator> //back_inserter
21
#include <fstream>
19
#include <fstream>
22
#include <utility> //min
20
#include <utility> //min
23
#include <algorithm>
-
 
24
 
21
 
25
#include "stb_image.h"
22
#include "../GLGraphics/stb_image.h"
26
#include "stb_image_write.h"
23
#include "../GLGraphics/stb_image_write.h"
27
 
24
 
28
static const char* history_filename = "history.txt";
25
static const char* history_filename = "history.txt";
29
 
26
 
30
static const int line_spacing = 13;
27
static const int line_spacing = 13;
31
static const int char_spacing = 7;
28
static const int char_spacing = 7;