2020-07-06 23:43:47 +00:00
|
|
|
|
namespace Gtk.Source
|
2020-07-02 05:09:23 +00:00
|
|
|
|
{
|
|
|
|
|
using System;
|
|
|
|
|
public partial class GtkSourceBuffer : Gtk.TextBuffer
|
|
|
|
|
{
|
|
|
|
|
public GtkSourceBuffer() : base(IntPtr.Zero)
|
|
|
|
|
{
|
|
|
|
|
owned = true;
|
|
|
|
|
Raw = gtk_source_buffer_new(IntPtr.Zero);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|