32 lines
532 B
C
32 lines
532 B
C
|
#pragma once
|
||
|
#ifndef PROCESSON_H
|
||
|
#define PROCESSON_H
|
||
|
#include "WBFZExchangePluginAPI.h"
|
||
|
#include <QtWidgets/QMainWindow>
|
||
|
#include <QtWidgets/QApplication>
|
||
|
#include <stdlib.h>
|
||
|
#include <stdio.h>
|
||
|
#include <vector>
|
||
|
#include <QObject>
|
||
|
|
||
|
namespace Ui{
|
||
|
class ProcessOnMainWindow;
|
||
|
}
|
||
|
|
||
|
class ProcessOn : public QMainWindow
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
private:
|
||
|
Ui::ProcessOnMainWindow* ui;
|
||
|
|
||
|
public:
|
||
|
ProcessOn(QWidget* parent = nullptr);
|
||
|
~ProcessOn();
|
||
|
void setRange(size_t start, size_t end);
|
||
|
void setValue(size_t v);
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif
|
||
|
|