/*
 * =====================================================================================
 *
 *       Filename:  editor.h
 *
 *    Description:  Editor for procedurally generated textures
 *
 *        Version:  1.0
 *        Created:  11/08/2011 20:36:58
 *       Revision:  none
 *       Compiler:  gcc
 *
 *         Author:  John Ryland (jryland), jryland@xiaofrog.com
 *        Company:  InvertedLogic
 *
 * =====================================================================================
 */

#ifndef __EDITOR_H__
#define __EDITOR_H__


#include <QWidget>


class Editor : public QWidget
{
public:
    Editor();
    ~Editor();

protected:

};


#endif // __EDITOR_H__

