20 lines
489 B
C#
20 lines
489 B
C#
#region --- License ---
|
|
/* Copyright (c) 2006, 2007 Stefanos Apostolopoulos
|
|
* See license.txt for license info
|
|
*/
|
|
#endregion
|
|
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using Bind.Structures;
|
|
|
|
namespace Bind
|
|
{
|
|
interface ISpecReader
|
|
{
|
|
DelegateCollection ReadDelegates(string file);
|
|
EnumCollection ReadEnums(string file);
|
|
Dictionary<string, string> ReadTypeMap(string file);
|
|
Dictionary<string, string> ReadCSTypeMap(string file);
|
|
}
|
|
}
|