Ankush's Garage
A collection of stuff made by Ankush Roy
Loading...
Searching...
No Matches
Console.h
Go to the documentation of this file.
1#ifndef INCLUDE_CORE_CONSOLE_CPP_
2#define INCLUDE_CORE_CONSOLE_CPP_
3
4#include "Common/pch.h"
5
6namespace Core
7{
8
10{
11 std::string message;
12 std::string timestamp;
13};
14
16{
17 public:
18 static const size_t MAX_MESSAGES = 100;
19
20 static void addMessage(const std::string &msg);
21 static const std::vector<ConsoleLogMessage> &getMessages();
22
23 static std::vector<ConsoleLogMessage> ConsoleLogs;
24 static int index;
25
26 static std::string getCurrentTime();
27};
28
29} // namespace Core
30#endif // INCLUDE_CORE_CONSOLE_CPP_
Definition Console.h:16
static std::string getCurrentTime()
Definition Console.cpp:28
static std::vector< ConsoleLogMessage > ConsoleLogs
Definition Console.h:23
static const std::vector< ConsoleLogMessage > & getMessages()
Definition Console.cpp:23
static void addMessage(const std::string &msg)
Definition Console.cpp:9
static const size_t MAX_MESSAGES
Definition Console.h:18
static int index
Definition Console.h:24
Definition Console.cpp:4
Definition Console.h:10
std::string timestamp
Definition Console.h:12
std::string message
Definition Console.h:11