2009-02-22 10:43:35 +00:00
|
|
|
|
#region --- License ---
|
|
|
|
|
/* Copyright (c) 2006, 2007 Stefanos Apostolopoulos
|
|
|
|
|
* See license.txt for license info
|
|
|
|
|
*/
|
|
|
|
|
#endregion
|
|
|
|
|
|
2010-12-03 10:21:50 +00:00
|
|
|
|
using Bind.Structures;
|
2013-11-01 08:06:49 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
2009-02-22 10:43:35 +00:00
|
|
|
|
namespace Bind
|
|
|
|
|
{
|
2010-12-02 21:36:05 +00:00
|
|
|
|
interface IBind
|
2009-02-22 10:43:35 +00:00
|
|
|
|
{
|
2010-12-03 10:21:50 +00:00
|
|
|
|
DelegateCollection Delegates { get; }
|
|
|
|
|
EnumCollection Enums { get; }
|
|
|
|
|
FunctionCollection Wrappers { get; }
|
2013-11-01 08:06:49 +00:00
|
|
|
|
Settings Settings { get; }
|
|
|
|
|
|
|
|
|
|
IDictionary<string, string> GLTypes { get; }
|
|
|
|
|
IDictionary<string, string> CSTypes { get; }
|
|
|
|
|
|
2009-02-22 10:43:35 +00:00
|
|
|
|
void Process();
|
|
|
|
|
}
|
|
|
|
|
}
|