~m-robinson/maus/evtvwr

« back to all changes in this revision

Viewing changes to site_scons/site_tools/qt4/test/moc/cpppath/specific/image/src/main.cpp

  • Committer: Matt Robinson
  • Date: 2011-10-03 15:42:53 UTC
  • Revision ID: m.robinson@sheffield.ac.uk-20111003154253-n37l8x8970io32hm
for some reason I forgot to add these to bzr.
They allow building against qt4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include "mocFromCpp.h"
 
2
#include "mocFromH.h"
 
3
 
 
4
#include <QApplication>
 
5
#include <stdio.h>
 
6
    
 
7
int main(int argc, char **argv)
 
8
{
 
9
  QApplication app(argc, argv);
 
10
  mocFromCpp();
 
11
  mocFromH();
 
12
  printf("Hello World\n");
 
13
  return 0;
 
14
}