Radiation-resistantCamera/Vimba_6_0/VimbaCPP/Examples/VimbaViewer/Source/ControllerViewer.h
2025-04-30 09:26:04 +08:00

49 lines
480 B
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#pragma once
#ifndef CONTROLLERVIEWER_H
#define CONTROLLERVIEWER_H
//TODO sort the header you don´t need
#include <QtGui>
class ControllerViewer : public QTreeView
{
Q_OBJECT
public:
ControllerViewer ( QWidget *parent = 0 );
~ControllerViewer();
void SetupTree( void );
QStandardItemModel *m_Model;
protected:
private:
public:
protected:
private:
private slots:
signals:
};
#endif