55324777ca
Improved ISpecWriter API by removing low-level implementation details. Made Constant implement IComparable so it can be sorted before being written to output.
21 lines
693 B
C#
21 lines
693 B
C#
#region --- License ---
|
|
/* Copyright (c) 2006, 2007 Stefanos Apostolopoulos
|
|
* See license.txt for license info
|
|
*/
|
|
#endregion
|
|
|
|
using System.Collections.Generic;
|
|
using Bind.Structures;
|
|
|
|
namespace Bind
|
|
{
|
|
interface ISpecWriter
|
|
{
|
|
void WriteBindings(IBind generator);
|
|
// void WriteDelegates(BindStreamWriter sw, DelegateCollection delegates);
|
|
// void WriteWrappers(BindStreamWriter sw, FunctionCollection wrappers, Dictionary<string, string> CSTypes);
|
|
// void WriteEnums(BindStreamWriter sw, EnumCollection enums);
|
|
// void WriteTypes(BindStreamWriter sw, Dictionary<string, string> CSTypes);
|
|
// void WriteLicense(BindStreamWriter sw);
|
|
}
|
|
}
|