Opentk/Source/OpenTK/Compute/CL10/ErrorHelper.cs
2009-08-11 14:21:35 +00:00

26 lines
450 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace OpenTK.Compute.CL10
{
struct ErrorHelper : IDisposable
{
#region Constructors
public ErrorHelper(IntPtr context)
{
}
#endregion
#region IDisposable Members
public void Dispose()
{
throw new NotImplementedException();
}
#endregion
}
}