Development/Tutorials/Programming Tutorial KDE 3/kapp: Difference between revisions

From KDE TechBase
(Fix the code tags)
m (Text replace - "<code>" to "<syntaxhighlight lang="text">")
Line 1: Line 1:
<code>
<syntaxhighlight lang="text">
#include <qstring.h>
#include <qstring.h>
#include <kapplication.h>
#include <kapplication.h>

Revision as of 20:45, 29 June 2011

<syntaxhighlight lang="text">

  1. include <qstring.h>
  2. include <kapplication.h>
  3. include <kaboutdata.h>
  4. include <kmessagebox.h>
  5. include <kcmdlineargs.h>

int main (int argc, char *argv[]) {

       KAboutData aboutData( "test", "test",
       "1.0", "test", KAboutData::License_GPL,
       "(c) 2006" );
       KCmdLineArgs::init( argc, argv, &aboutData );
       KApplication khello;
       KMessageBox::information(0,"This is an example");

}