summaryrefslogtreecommitdiff
path: root/src/data/tikzparserdefs.h
blob: 58657394f0db9469351b578238cfc1535f4b5f59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef TIKZPARSERDEFS_H
#define TIKZPARSERDEFS_H

#define YY_NO_UNISTD_H 1

#include "graphelementproperty.h"
#include "graphelementdata.h"
#include "node.h"
#include "tikzassembler.h"

#include <QString>
#include <QRectF>
#include <QDebug>

struct noderef {
    Node *node;
    char *anchor;
};

inline int isatty(int) { return 0; }

#endif // TIKZPARSERDEFS_H