2009-02-22 11:43:35 +01:00
|
|
|
|
#region --- License ---
|
|
|
|
|
/* Copyright (c) 2006, 2007 Stefanos Apostolopoulos
|
|
|
|
|
* See license.txt for license info
|
|
|
|
|
*/
|
|
|
|
|
#endregion
|
|
|
|
|
|
2010-12-03 11:21:50 +01:00
|
|
|
|
using Bind.Structures;
|
2009-02-22 11:43:35 +01:00
|
|
|
|
namespace Bind
|
|
|
|
|
{
|
2010-12-02 22:36:05 +01:00
|
|
|
|
interface IBind
|
2009-02-22 11:43:35 +01:00
|
|
|
|
{
|
2010-12-03 11:21:50 +01:00
|
|
|
|
DelegateCollection Delegates { get; }
|
|
|
|
|
EnumCollection Enums { get; }
|
|
|
|
|
FunctionCollection Wrappers { get; }
|
2009-02-22 11:43:35 +01:00
|
|
|
|
void Process();
|
|
|
|
|
}
|
|
|
|
|
}
|