No Description

asm.h 206B

123456789101112131415
  1. #ifndef ASM_H
  2. #define ASM_H
  3. #include <QString>
  4. #include <QList>
  5. class Asm
  6. {
  7. public:
  8. Asm();
  9. void strip_comment(QString*);
  10. QList<QStringList>* parse(QString);
  11. };
  12. #endif // ASM_H