ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/qtrvu/main.cxx
Revision: 1.1
Committed: Sat Oct 22 22:38:10 2011 UTC (12 years, 5 months ago) by greg
Branch: MAIN
CVS Tags: rad5R4, rad5R2, rad4R2P2, rad5R0, rad5R1, rad4R2, rad4R1, rad4R2P1, rad5R3, HEAD
Log Message:
Added qt interface for rvu and cmake files from Bill Hoffman

File Contents

# Content
1 #include <QtGui/QApplication>
2 #include <QtGui/QColor>
3
4 extern "C" int qt_rvu_run();
5 extern "C" int qt_rvu_init(char* name, char* id,
6 int* xsize, int* ysize);
7
8 int main(int argc, char* argv[])
9 {
10 int x, y;
11 qt_rvu_init("test", "id", &x, &y);
12 return qt_rvu_run();
13 }