Newer
Older
Import / applications / Photoframe / src / videolist.h
@John Ryland John Ryland on 22 Dec 2020 321 bytes import of apps from backup copy of dell-pc
#ifndef __VIDEOLIST_H__
#define __VIDEOLIST_H__


#include <QWidget>
class DeviceList;


class VideoList : public QWidget
{
	Q_OBJECT
public:
	VideoList(QWidget *parent);
	virtual ~VideoList();
signals:
	void setStage(int);
public slots:
	void switchFocus();
private:
	DeviceList *devices;
};


#endif // __VIDEOLIST_H__