20 lines
375 B
C#
20 lines
375 B
C#
// Copyright (c) Alexandre Mutel. All rights reserved.
|
|
// Licensed under the BSD-Clause 2 license.
|
|
// See license.txt file in the project root for full license information.
|
|
|
|
namespace CppAst
|
|
{
|
|
/// <summary>
|
|
/// Type of a template argument
|
|
/// </summary>
|
|
public enum CppTemplateArgumentKind
|
|
{
|
|
AsType,
|
|
AsInteger,
|
|
Unknown,
|
|
}
|
|
|
|
|
|
}
|
|
|