This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef DBMETAMODEL_H | |
#define DBMETAMODEL_H | |
#include <QString> | |
#include <QStringList> | |
#include <QStringBuilder> | |
#include <QVariant> | |
#include <QMetaProperty> | |
#include <QSqlQuery> | |
#include <QDateTime> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
grammar pascalminus; | |
options | |
{ | |
output = AST; | |
language = Java; | |
// If generating an AST (output=AST; option) or specifying a tree walker then | |
// also add the following line |
NewerOlder