Browse Source

Moved type printing functionality to CppSharp.AST.

pull/685/head
Joao Matos 10 years ago
parent
commit
09a9d17efb
  1. 4
      src/AST/CppTypePrinter.cs
  2. 4
      src/AST/IExpressionPrinter.cs
  3. 3
      src/AST/ITypePrinter.cs

4
src/Generator/Types/CppTypePrinter.cs → src/AST/CppTypePrinter.cs

@ -1,11 +1,9 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
using CppSharp.AST;
using CppSharp.AST.Extensions; using CppSharp.AST.Extensions;
using Type = CppSharp.AST.Type;
namespace CppSharp.Types namespace CppSharp.AST
{ {
public enum CppTypePrintScopeKind public enum CppTypePrintScopeKind
{ {

4
src/Generator/Types/IExpressionPrinter.cs → src/AST/IExpressionPrinter.cs

@ -1,6 +1,4 @@
using CppSharp.AST; namespace CppSharp.AST
namespace CppSharp.Types
{ {
public interface IExpressionPrinter public interface IExpressionPrinter
{ {

3
src/Generator/Types/ITypePrinter.cs → src/AST/ITypePrinter.cs

@ -1,9 +1,8 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
using CppSharp.AST;
using CppSharp.AST.Extensions; using CppSharp.AST.Extensions;
namespace CppSharp.Types namespace CppSharp.AST
{ {
public enum TypePrinterContextKind public enum TypePrinterContextKind
{ {
Loading…
Cancel
Save