2009-02-22 11:43:35 +01:00
|
|
|
|
#region --- License ---
|
|
|
|
|
/* Copyright (c) 2006, 2007 Stefanos Apostolopoulos
|
|
|
|
|
* See license.txt for license info
|
|
|
|
|
*/
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.IO;
|
2009-08-21 22:28:14 +02:00
|
|
|
|
using Bind.Structures;
|
2009-02-22 11:43:35 +01:00
|
|
|
|
|
|
|
|
|
namespace Bind
|
|
|
|
|
{
|
|
|
|
|
interface ISpecReader
|
|
|
|
|
{
|
2010-12-06 15:34:16 +01:00
|
|
|
|
DelegateCollection ReadDelegates(string file);
|
|
|
|
|
EnumCollection ReadEnums(string file);
|
|
|
|
|
Dictionary<string, string> ReadTypeMap(string file);
|
|
|
|
|
Dictionary<string, string> ReadCSTypeMap(string file);
|
2009-02-22 11:43:35 +01:00
|
|
|
|
}
|
|
|
|
|
}
|