Newer
Older
Import / research / 3d-z-maps / procedural-editor / main.cpp
@John John on 29 Dec 2020 648 bytes bulk import from macbookpro checkouts
/*
 * =====================================================================================
 *
 *       Filename:  main.cpp
 *
 *    Description:  
 *
 *        Version:  1.0
 *        Created:  13/08/2011 23:25:07
 *       Revision:  none
 *       Compiler:  gcc
 *
 *         Author:  John Ryland (jryland), jryland@xiaofrog.com
 *        Company:  InvertedLogic
 *
 * =====================================================================================
 */

#include <QApplication>
#include <sample.h>


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

    Sample sample("");
    sample.show();

    return app.exec();
}