mirror of
https://github.com/huderlem/porymap.git
synced 2026-03-31 14:35:06 -05:00
16 lines
206 B
C++
Executable File
16 lines
206 B
C++
Executable File
#ifndef ASM_H
|
|
#define ASM_H
|
|
|
|
#include <QString>
|
|
#include <QList>
|
|
|
|
class Asm
|
|
{
|
|
public:
|
|
Asm();
|
|
void strip_comment(QString*);
|
|
QList<QStringList>* parse(QString);
|
|
};
|
|
|
|
#endif // ASM_H
|