forked from vircon32/vircon32-libretro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Logging.hpp
24 lines (17 loc) · 858 Bytes
/
Logging.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// *****************************************************************************
// start include guard
#ifndef LOGGING_HPP
#define LOGGING_HPP
// include C/C++ headers
#include <string> // [ C++ STL ] Strings
// *****************************************************************************
// =============================================================================
// BASIC LOGGING FUNCTIONS
// =============================================================================
// general use funcions for the global log
void LOG( const std::string& Message );
[[ noreturn ]] void THROW( const std::string& Message );
// *****************************************************************************
// end include guard
#endif
// *****************************************************************************