Opentk/Source/Bind/ISpecWriter.cs
the_fiddler 55324777ca Added documentation comments to generated enums.
Improved ISpecWriter API by removing low-level implementation details.
Made Constant implement IComparable so it can be sorted before being written to output.
2011-07-20 10:10:33 +00:00

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);
}
}