dispmap/svapplicationcontext.h

23 lines
465 B
C
Raw Normal View History

2014-07-28 20:25:39 +04:00
#ifndef SVPOINTCLOUDVIEWMODEL_H
#define SVPOINTCLOUDVIEWMODEL_H
#include <QObject>
#include "svpointcloud.h"
class SvApplicationContext : public QObject
{
Q_OBJECT
public:
explicit SvApplicationContext(QObject *parent = 0);
void setPointCloud(SvPointCloud *pointCloud) { m_pointCloud = pointCloud; }
2014-07-29 17:47:14 +04:00
Q_INVOKABLE SvPointCloud* pointCloud() { return m_pointCloud; }
2014-07-28 20:25:39 +04:00
private:
SvPointCloud *m_pointCloud;
};
#endif // SVPOINTCLOUDVIEWMODEL_H