Sha256: 7a8cc8e460ed9a1a6de2fd7412fd3aff8aa3260c2a8210726c9a9b42fae9d942
Contents?: true
Size: 1.58 KB
Versions: 14
Compression:
Stored size: 1.58 KB
Contents
/*************************************************************************** qtwebkithandlers.cpp - QtWebKit specific marshallers ------------------- begin : Sun Sep 28 2003 copyright : (C) 2003 by Richard Dale email : Richard_Dale@tipitina.demon.co.uk ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #include <ruby.h> #undef read #undef write #undef connect #undef accept #undef truncate #include <qtruby.h> #include <smokeruby.h> #include <marshall_macros.h> #include <QtWebKit/qwebframe.h> #include <QtWebKit/qwebhistory.h> DEF_LIST_MARSHALLER( QWebFrameList, QList<QWebFrame*>, QWebFrame ) DEF_VALUELIST_MARSHALLER( QWebHistoryItemList, QList<QWebHistoryItem>, QWebHistoryItem ) TypeHandler QtWebKit_handlers[] = { { "QList<QWebFrame*>", marshall_QWebFrameList }, { "QList<QWebHistoryItem>", marshall_QWebHistoryItemList }, { 0, 0 } };
Version data entries
14 entries across 14 versions & 2 rubygems