~ubuntu-branches/ubuntu/vivid/kdesdk/vivid

« back to all changes in this revision

Viewing changes to kunittest/example/simple/maingui.cpp

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2012-06-06 11:49:54 UTC
  • mfrom: (0.4.21)
  • Revision ID: package-import@ubuntu.com-20120606114954-rdls73fzlpzxglbx
Tags: 4:4.8.80-0ubuntu1
* New uptream beta release
* Update dont_export_private_classes.diff

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/**
2
 
 * Copyright (C)  2005  Jeroen Wijnhout <Jeroen.Wijnhout@kdemail.net>
3
 
 *
4
 
 * Redistribution and use in source and binary forms, with or without
5
 
 * modification, are permitted provided that the following conditions
6
 
 * are met:
7
 
 *
8
 
 * 1. Redistributions of source code must retain the above copyright
9
 
 *   notice, this list of conditions and the following disclaimer.
10
 
 * 2. Redistributions in binary form must reproduce the above copyright
11
 
 *   notice, this list of conditions and the following disclaimer in the
12
 
 *   documentation and/or other materials provided with the distribution.
13
 
 *
14
 
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
15
 
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16
 
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17
 
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
18
 
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19
 
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20
 
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21
 
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22
 
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23
 
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24
 
 */
25
 
 
26
 
#include <kaboutdata.h>
27
 
#include <kapplication.h>
28
 
#include <kcmdlineargs.h>
29
 
#include <klocale.h>
30
 
 
31
 
#include "kunittest/runnergui.h"
32
 
 
33
 
static const char description[] =
34
 
    I18N_NOOP("A simple sample.");
35
 
 
36
 
static const char version[] = "0.1";
37
 
 
38
 
int main( int argc, char** argv )
39
 
{
40
 
    KAboutData about("SampleTests", 0, ki18n("SampleTests"), version, ki18n(description),
41
 
                     KAboutData::License_BSD, ki18n("(C) 2005 Jeroen Wijnhout"), KLocalizedString(), 0,
42
 
                     "Jeroen.Wijnhout@kdemail.net");
43
 
 
44
 
    KCmdLineArgs::init(argc, argv, &about);
45
 
 
46
 
    KCmdLineOptions options;
47
 
    KCmdLineArgs::addCmdLineOptions( options );
48
 
 
49
 
    KApplication app;
50
 
 
51
 
    KUnitTest::RunnerGUI runner(0);
52
 
    runner.show();
53
 
    app.setMainWidget(&runner);
54
 
 
55
 
    return app.exec();
56
 
}