CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
trace.h
1
2#ifndef _aspose_system_diag_trace_h_
3#define _aspose_system_diag_trace_h_
4
5#include "system/string.h"
6
7namespace System { namespace Diagnostics {
8
13struct Trace
14{
17 static ASPOSECPP_SHARED_API void WriteLine(const String& message);
18
20 static ASPOSECPP_SHARED_API void Flush();
21
22};
23
24}} // namespace System::Diagnostics
25
26#endif // _aspose_system_diag_trace_h
String class used across the library. Is a substitute for C# System.String when translating code....
Definition: string.h:122
Definition: db_command.h:9
Provides interface to access debugger trace (if any). Works in Debug mode only. This is a static type...
Definition: trace.h:14
static void Flush()
Flushes the output buffer, and causes buffered data to be written to the listeners.
static void WriteLine(const String &message)
Writes line to debugger trace.