This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Doric/doric-Qt/doric/context.h
2019-12-21 21:55:53 +08:00

26 lines
313 B
C++

#ifndef CONTEXT_H
#define CONTEXT_H
#include <QString>
#include "driver/driver.h"
class Context
{
private:
int contextId;
QString *source;
public:
Driver *driver;
Context(int contextId, QString *source);
void show();
void init(double width, double height);
};
#endif // CONTEXT_H