~kubuntu-members/korundum/4.11

« back to all changes in this revision

Viewing changes to qtruby/modules/qscintilla/qscintillahandlers.cpp

  • Committer: Ian Monroe
  • Date: 2010-11-21 15:55:01 UTC
  • Revision ID: git-v1:c37670e4e3c59f5eb2ba112f5341a5e706217f6f
Split up Smoke into Qt and KDE directories. 
Move libsmoke stuff into the generator directory
Split up Ruby into qtruby and korundum directories

svn path=/trunk/KDE/kdebindings/ruby/; revision=1199320

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 <Qsci/qscicommandset.h>
 
25
 
 
26
DEF_LIST_MARSHALLER( QsciCommandList, QList<QsciCommand*>, QsciCommand )
 
27
 
 
28
TypeHandler QScintilla_handlers[] = {
 
29
        { "QList<QsciCommand*>&", marshall_QsciCommandList },
 
30
    { 0, 0 }
 
31
};