X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=src%2Fgui-listbox.cpp;fp=src%2Fgui-listbox.cpp;h=1c81998d4070b948c0cabf47088a8e9ca7fc04f8;hb=7006c85b72b5eff7cfc935624711cf0bfdaa1508;hp=0000000000000000000000000000000000000000;hpb=65527be1c7ad3f05ba651c25249fd8300f5f4fad;p=guile-irrlicht.git diff --git a/src/gui-listbox.cpp b/src/gui-listbox.cpp new file mode 100644 index 0000000..1c81998 --- /dev/null +++ b/src/gui-listbox.cpp @@ -0,0 +1,40 @@ +/* guile-irrlicht --- GNU Guile bindings for Irrlicht Engine + + Copyright (C) 2020 Javier Sancho + + This file is part of guile-irrlicht. + + guile-irrlicht is free software; you can redistribute it and/or modify + it under the terms of the GNU Lesser General Public License as + published by the Free Software Foundation; either version 3 of the + License, or (at your option) any later version. + + guile-irrlicht is distributed in the hope that it will be useful, but + WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with guile-irrlicht. If not, see + . +*/ + +#include +#include + +#include "gui-listbox.h" +#include "wrapped.h" + +extern "C" { + + void + init_gui_listbox (void) + { + init_gui_listbox_type (); + } + + DEFINE_WRAPPED_TYPE (irr::gui::IGUIListBox*, "gui-listbox", + init_gui_listbox_type, gui_listbox_p, + wrap_gui_listbox, unwrap_gui_listbox); + +}