TDME2 1.9.121
Console.h
Go to the documentation of this file.
1
2#pragma once
3
4#include <string>
5#include <vector>
6
7#include <tdme/tdme.h>
12
13using std::string;
14using std::vector;
15
18
19
20/**
21 * Console class
22 * @author Andreas Drewke
23 * @versio $Id$
24 */
26{
27public:
28 /**
29 * Print given string and trailing newline to console
30 * @param str string
31 */
32 static void println(const string& str);
33
34 /**
35 * Print given string
36 * @param str string
37 */
38 static void print(const string& str);
39
40 /**
41 * Print new line to console
42 */
43 static void println();
44
45 /**
46 * Shutdown console logging and especially writing log to file
47 */
48 static void shutdown();
49
50private:
51 class LogWriterThread: public Thread {
52 public:
55 void run();
56 void flush();
57 };
58
59 /**
60 * Initialize log writer thread
61 */
62 static void initLogWriterThread();
63
64 //
66 STATIC_DLL_IMPEXT static vector<string>* messages;
68};
Mutex implementation.
Definition: Mutex.h:27
Base class for threads.
Definition: Thread.h:26
void run()
Abstract run() method, should be implemented by subclassed class, will be called after spawn by start...
Definition: Console.cpp:36
Console class.
Definition: Console.h:26
static void println()
Print new line to console.
Definition: Console.cpp:78
static void shutdown()
Shutdown console logging and especially writing log to file.
Definition: Console.cpp:86
static void print(const string &str)
Print given string.
Definition: Console.cpp:69
static void initLogWriterThread()
Initialize log writer thread.
static STATIC_DLL_IMPEXT Mutex * mutex
Definition: Console.h:65
static STATIC_DLL_IMPEXT LogWriterThread logWriterThread
Definition: Console.h:67
static STATIC_DLL_IMPEXT vector< string > * messages
Definition: Console.h:66
#define STATIC_DLL_IMPEXT
Definition: tdme.h:11