NeuralEngine
A Game Engine with embeded Machine Learning algorithms based on Gaussian Processes.
NeLogToOutputWindow.h
1
11#pragma once
12
13#include <Core/NeLogger.h>
14
15namespace NeuralEngine
16{
17
18 class NE_IMPEXP LogToOutputWindow : public Listener
19 {
20 public:
21 LogToOutputWindow(int flags);
22
23 private:
24 virtual void Report(std::string const& message) override;
25 };
26
27}