Schim
miscfiles.h
Go to the documentation of this file.
1 
7 #ifndef MISCFILES_H
8 #define MISCFILES_H
9 
10 #include <QString>
11 
12 #include "model/object.h"
13 #include "model/header.h"
14 
24 QString readMeta(const QString &filename);
25 
32 CompositeObject *parseCompositeObject(const QString &filename);
39 Header *parseHeader(const QString &filename);
40 
41 #endif // MISCFILES_H
Class representing a header for a sheet.
Definition: header.h:15
Header * parseHeader(const QString &filename)
Parse CompositeObject from file filename.
CompositeObject * parseCompositeObject(const QString &filename)
Parse a CompositeObject from file filename.
QString readMeta(const QString &filename)
Read a !meta file containing information about symbols.
An object that consists of other child objects.
Definition: compositeobject.h:16