~kubuntu-members/korundum/4.11

« back to all changes in this revision

Viewing changes to kate/katehandlers.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
 
                 plasmahandlers.cpp  -  Plasma 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 <kate/mainwindow.h>
25
 
 
26
 
DEF_LIST_MARSHALLER( KateMainWindowList, QList<Kate::MainWindow*>, Kate::MainWindow )
27
 
 
28
 
TypeHandler Kate_handlers[] = {
29
 
    { "QList<Kate::MainWindow*>", marshall_KateMainWindowList },
30
 
    { "QList<Kate::MainWindow*>&", marshall_KateMainWindowList },
31
 
    { 0, 0 }
32
 
};