view libgui/src/welcome-wizard.h @ 17611:0dd2cf2e3174

don't use ui designer for welcome dialog box * welcome-wizard.ui: Delete. * module.mk: Update file list. * welcome-wizard.cc, welcome-wizard.h: Rewrite.
author John W. Eaton <jwe@octave.org>
date Tue, 08 Oct 2013 18:38:40 -0400
parents c8c0dff02538
children d63878346099
line wrap: on
line source

/*

Copyright (C) 2013 John W. Eaton
Copyright (C) 2011-2012 Jacob Dawid

This file is part of Octave.

Octave is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation; either version 3 of the License, or (at your
option) any later version.

Octave is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
for more details.

You should have received a copy of the GNU General Public License
along with Octave; see the file COPYING.  If not, see
<http://www.gnu.org/licenses/>.

*/

#ifndef WELCOMEWIZARD_H
#define WELCOMEWIZARD_H

#include <QDialog>

class welcome_wizard : public QDialog
{
  Q_OBJECT

public:

  welcome_wizard (QWidget *parent = 0);

  ~welcome_wizard (void) { }
};

#endif // WELCOMEWIZARD_H