GeNN  4.0.0
GPU enhanced Neuronal Networks (GeNN)
DebugOutputAppender.h
Go to the documentation of this file.
1 #pragma once
3 #include <plog/WinApi.h>
4 
5 namespace plog
6 {
7  template<class Formatter>
9  {
10  public:
11  virtual void write(const Record& record)
12  {
13  OutputDebugStringW(Formatter::format(record).c_str());
14  }
15  };
16 }
Definition: AndroidAppender.h:5
Definition: DebugOutputAppender.h:8
Definition: Record.h:102
Definition: IAppender.h:6
virtual void write(const Record &record)
Definition: DebugOutputAppender.h:11