~ubuntu-branches/ubuntu/oneiric/kdebindings/oneiric

« back to all changes in this revision

Viewing changes to ruby/qwt/qwthandlers.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Philip Muskovac
  • Date: 2010-12-07 00:10:46 UTC
  • mfrom: (1.1.42 upstream)
  • Revision ID: james.westby@ubuntu.com-20101207001046-h9gf2h54ym29tgui
Tags: 4:4.5.85-0ubuntu1
* New upstream beta release
* Disable libqwt-ruby1.8 and qwt files in libqt4-ruby1.8.examples
* Add libqtdeclarative-ruby1.8, libsmokeqt3support4-3,
  libsmokeqtdeclarative4-3 and libsmokeqthelp4-3

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/***************************************************************************
2
 
                          qscintillahandlers.cpp  -  QScintilla specific marshallers
3
 
                             -------------------
4
 
    begin                : Sun Sep 28 2003
5
 
    copyright            : (C) 2003 by Richard Dale
6
 
    email                : Richard_Dale@tipitina.demon.co.uk
7
 
 ***************************************************************************/
8
 
 
9
 
/***************************************************************************
10
 
 *                                                                         *
11
 
 *   This program is free software; you can redistribute it and/or modify  *
12
 
 *   it under the terms of the GNU General Public License as published by  *
13
 
 *   the Free Software Foundation; either version 2 of the License, or     *
14
 
 *   (at your option) any later version.                                   *
15
 
 *                                                                         *
16
 
 ***************************************************************************/
17
 
 
18
 
#include <ruby.h>
19
 
 
20
 
#include <qtruby.h>
21
 
#include <smokeruby.h>
22
 
#include <marshall_macros.h>
23
 
 
24
 
#include <qwt_plot_dict.h>
25
 
 
26
 
DEF_LIST_MARSHALLER( QwtPlotItemList, QList<QwtPlotItem*>, QwtPlotItem )
27
 
 
28
 
TypeHandler Qwt_handlers[] = {
29
 
        { "QwtPlotItemList&", marshall_QwtPlotItemList },
30
 
    { 0, 0 }
31
 
};