using System; using System.Collections.Generic; using System.Linq; namespace CppSharp.AST { /// /// Represents a declaration context. /// public abstract class DeclarationContext : Declaration { public bool IsAnonymous { get; set; } public List Namespaces; public List Enums; public List Functions; public List Classes; public List