/***************************************************************************
                          TryQtProjView.h  -  description
                             -------------------
    begin                : Sat Apr 1 2000
    copyright            : (C) 2000 by Richard Dale
    email                : Richard_Dale@tipitina.demon.co.uk
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   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 TRYQTPROJVIEW_H
#define TRYQTPROJVIEW_H

#include <Foundation/NSObject.h>

// include files for QT
#include <qtobjc/QWidget.h>
#include <qtobjc/QScrollView.h>

// application specific includes
#include "TryQtProjDoc.h"

/**
 * This class provides an incomplete base for your application view.
 */
@interface TryQtProjView : QWidget
    - initWithParent: (QWidget *) parent doc: (TryQtProjDoc*) doc;
    - (void) dealloc;

//  slots:
    - (void) slotDocumentChanged;
@end

#endif

Documentation generated by duke@tipitina on Sat May 6 11:42:52 EDT 2000