22 lines
440 B
C++
22 lines
440 B
C++
/***
|
|
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
|
|
|
File: Flusher.cpp
|
|
Date: 2021-8-27
|
|
Author: Reece
|
|
***/
|
|
#include <Source/RuntimeInternal.hpp>
|
|
#include "Flusher.hpp"
|
|
|
|
#include "ConsoleFIO/ConsoleFIO.hpp"
|
|
#include "ConsoleStd/ConsoleStd.hpp"
|
|
#include "Logging/AuLogger.hpp"
|
|
|
|
namespace Aurora::Console
|
|
{
|
|
void ForceFlush()
|
|
{
|
|
ConsoleFIO::Flush();
|
|
ConsoleStd::Flush();
|
|
}
|
|
} |