Subversion Repositories AndroidProjects

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1452 chris 1
#region --- License ---
2
/* Copyright (c) 2006, 2007 Stefanos Apostolopoulos
3
 * See license.txt for license info
4
 */
5
#endregion
6
 
7
using System.Collections.Generic;
8
using System.IO;
9
using Bind.Structures;
10
 
11
namespace Bind
12
{
13
    interface ISpecReader
14
    {
15
        DelegateCollection ReadDelegates(StreamReader specFile);
16
        EnumCollection ReadEnums(StreamReader specFile);
17
        Dictionary<string, string> ReadTypeMap(StreamReader specFile);
18
        Dictionary<string, string> ReadCSTypeMap(StreamReader specFile);
19
    }
20
}