overte/interface/src/ui/Snapshot.h
2014-01-28 14:18:21 -08:00

27 lines
472 B
C++

//
// Snapshot.h
// hifi
//
// Created by Stojce Slavkovski on 1/26/14.
// Copyright (c) 2014 High Fidelity, Inc. All rights reserved.
//
#ifndef __hifi__Snapshot__
#define __hifi__Snapshot__
#include <QString>
#include <QImage>
#include <QGLWidget>
#include <glm/glm.hpp>
class Snapshot {
public:
static void saveSnapshot(QGLWidget* widget, QString username, glm::vec3 location);
private:
QString _username;
};
#endif /* defined(__hifi__Snapshot__) */