File indexing completed on 2026-04-09 07:49:08
0001 #pragma once
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017 struct qdebug ;
0018
0019
0020 #include <string>
0021 #include "plog/Severity.h"
0022 #include "QUDARAP_API_EXPORT.hh"
0023
0024
0025 struct QUDARAP_API QDebug
0026 {
0027 static const plog::Severity LEVEL ;
0028 static const QDebug* INSTANCE ;
0029 static const QDebug* Get();
0030 static qdebug* MakeInstance();
0031
0032 QDebug();
0033
0034 qdebug* dbg ;
0035 qdebug* d_dbg ;
0036 qdebug* getDevicePtr() const ;
0037
0038 std::string desc() const ;
0039
0040 };
0041
0042