File: Backend.hpp

package info (click to toggle)
mathgl 8.0.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 248,044 kB
  • sloc: cpp: 87,365; ansic: 3,299; javascript: 3,284; pascal: 1,562; python: 52; sh: 51; makefile: 47; f90: 22
file content (22 lines) | stat: -rw-r--r-- 459 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#pragma once

#include <QObject>
#include <QStringList>
#if defined(_MSC_VER)
#include <mgl2/define.h>
#endif

class Backend : public QObject
{
	Q_OBJECT

public:
	explicit Backend(QObject *parent = 0);

public:
//	Q_INVOKABLE QString join(const QStringList list) const;
	Q_INVOKABLE QString show(const QString& text) const;
	Q_INVOKABLE QString coor(const QString& xy, const QString& text) const;
	Q_INVOKABLE QString geometry(const QString& mgl) const;
};