X-Git-Url: https://ruin.nu/git/?a=blobdiff_plain;f=eonsl%2Feonslview.h;fp=eonsl%2Feonslview.h;h=60893fba4e4961241dcd1ad6793abe750661e6ee;hb=0e5f7ad99205e3fe1eec3ab18343a1ea1ab5b186;hp=0000000000000000000000000000000000000000;hpb=2ef157a840252b9468734989542724fc66b3a43e;p=eonsl.git diff --git a/eonsl/eonslview.h b/eonsl/eonslview.h new file mode 100644 index 0000000..60893fb --- /dev/null +++ b/eonsl/eonslview.h @@ -0,0 +1,44 @@ +/*************************************************************************** + eonslview.h - description + ------------------- + begin : mån okt 23 17:11:28 CEST 2000 + copyright : (C) 2000 by Michael Andreen + email : whale@linux.nu + changes : + ***************************************************************************/ + +/*************************************************************************** + * * + * This program 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 2 of the License, or * + * (at your option) any later version. * + * * + ***************************************************************************/ + +#ifndef EONSLVIEW_H +#define EONSLVIEW_H + +// include files for QT +#include + +// application specific includes +#include "eonsldoc.h" + +/** + * This class provides an incomplete base for your application view. + */ + +class EonSLView : public QWidget +{ + Q_OBJECT + public: + EonSLView(QWidget *parent=0, EonSLDoc* doc=0); + ~EonSLView(); + + protected slots: + void slotDocumentChanged(); + +}; + +#endif