20 lines
331 B
C++
20 lines
331 B
C++
#ifndef FEATUREBROWSER_H
|
|
#define FEATUREBROWSER_H
|
|
|
|
class QPainter;
|
|
class Document;
|
|
|
|
class FeatureBrowser
|
|
{
|
|
public:
|
|
FeatureBrowser();
|
|
|
|
void setDocument(Document* document);
|
|
void paint(QPainter& painter, int viewportWidth, int viewportHeight);
|
|
|
|
private:
|
|
Document* m_document = nullptr;
|
|
};
|
|
|
|
#endif // FEATUREBROWSER_H
|