Add libwx-perl
[pkg-perl] / deb-src / libwx-perl / libwx-perl-0.96 / ext / dataview / XS / DataViewModelNotifier.xsp
1 #############################################################################
2 ## Name:        ext/dataview/XS/DataViewModelNotifier.xsp
3 ## Purpose:     XS++ for Wx::DataViewModelNotifier
4 ## Author:      Mattia Barbon
5 ## Modified by:
6 ## Created:     25/11/2007
7 ## RCS-ID:      $Id: DataViewModelNotifier.xsp 2314 2008-01-18 21:44:32Z mbarbon $
8 ## Copyright:   (c) 2007-2008 Mattia Barbon
9 ## Licence:     This program is free software; you can redistribute it and/or
10 ##              modify it under the same terms as Perl itself
11 #############################################################################
12
13 #if wxUSE_DATAVIEWCTRL
14
15 #include <wx/dataview.h>
16
17 %module{Wx};
18
19 %name{Wx::DataViewModelNotifier} class wxDataViewModelNotifier {
20 ##    wxDataViewModelNotifier();
21
22 %{
23 ## // thread KO
24 void
25 wxDataViewModelNotifier::DESTROY()
26   CODE:
27     if( wxPli_object_is_deleteable( aTHX_ ST(0) ) )
28         delete THIS;
29 %}
30
31     wxDataViewModelDisown* GetOwner();
32 };
33
34 #endif