mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 19:02:48 +00:00
31 lines
648 B
C++
31 lines
648 B
C++
/* -*- C++ -*-
|
|
|
|
This file declares the SMIVView class.
|
|
|
|
$ Author: Mirko Boehm $
|
|
$ Copyright: (C) 2005, Mirko Boehm $
|
|
$ Contact: mirko@kde.org
|
|
http://www.kde.org
|
|
http://www.hackerbuero.org $
|
|
$ License: LGPL with the following explicit clarification:
|
|
This code may be linked against any version of the Qt toolkit
|
|
from Trolltech, Norway. $
|
|
|
|
$Id: SMIVView.h 30 2005-08-16 16:16:04Z mirko $
|
|
*/
|
|
|
|
#ifndef SMIVVIEW_H
|
|
#define SMIVVIEW_H
|
|
|
|
#include <QtGui/QListView>
|
|
|
|
class SMIVView : public QListView
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
SMIVView (QWidget *parent = 0);
|
|
~SMIVView();
|
|
};
|
|
|
|
|
|
#endif // SMIVVIEW_H
|