mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-12-01 06:52:03 +00:00
15 lines
373 B
C#
15 lines
373 B
C#
using System.IO;
|
|
|
|
namespace Ryujinx.HLE.HOS.Diagnostics.Demangler.Ast
|
|
{
|
|
public class StdQualifiedName : ParentNode
|
|
{
|
|
public StdQualifiedName(BaseNode child) : base(NodeType.StdQualifiedName, child) { }
|
|
|
|
public override void PrintLeft(TextWriter writer)
|
|
{
|
|
writer.Write("std::");
|
|
Child.Print(writer);
|
|
}
|
|
}
|
|
}
|