2019-09-27 00:09:09 -07:00
|
|
|
#pragma once
|
|
|
|
|
2019-10-03 12:17:16 -07:00
|
|
|
#include "common.h"
|
2019-10-04 10:37:34 -07:00
|
|
|
|
2019-10-03 12:17:16 -07:00
|
|
|
#include "quam/archive.h"
|
2019-09-28 03:54:04 -07:00
|
|
|
|
2019-10-09 16:06:14 -07:00
|
|
|
#include <QValidator>
|
|
|
|
|
|
|
|
class PackValidator : public QValidator {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
Q_INVOKABLE explicit PackValidator(QObject *parent);
|
|
|
|
|
|
|
|
QValidator::State validate(QString &input, int &pos) const override;
|
|
|
|
};
|
|
|
|
|
2019-10-05 16:58:19 -07:00
|
|
|
Arc::Dir readPack(std::istream &st);
|
2019-09-27 00:09:09 -07:00
|
|
|
|
|
|
|
// EOF
|