RInside Version 0.2.6
inst/examples/qt/main.cpp
Go to the documentation of this file.
00001 // -*- mode: C++; c-indent-level: 4; c-basic-offset: 4;  tab-width: 8; -*-
00002 //
00003 // Qt usage example for RInside, inspired by the standard 'density
00004 // sliders' example for other GUI toolkits
00005 //
00006 // Copyright (C) 2011  Dirk Eddelbuettel and Romain Francois
00007 
00008 
00009 #include <QApplication>
00010 #include "qtdensity.h"
00011 
00012 int main(int argc, char *argv[])
00013 {
00014     RInside R(argc, argv);              // create an embedded R instance
00015 
00016     QApplication app(argc, argv);
00017     QtDensity qtdensity(R);             // pass R inst. by reference
00018     return app.exec();
00019 }
 All Classes Files Functions Variables Enumerations Enumerator Defines