mirror of
https://github.com/arcan1s/moldyn.git
synced 2025-06-28 23:01:43 +00:00
30 lines
400 B
C++
30 lines
400 B
C++
#ifndef CLEAR_ITEMS_H
|
|
#define CLEAR_ITEMS_H
|
|
|
|
#include <QWidget>
|
|
|
|
class MainWindow;
|
|
|
|
class Clear_items : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit Clear_items(MainWindow *wid = 0);
|
|
void clear_trj();
|
|
void clear_statgen();
|
|
void clear_envir();
|
|
void clear_radf();
|
|
void clear_pdb();
|
|
|
|
signals:
|
|
|
|
public slots:
|
|
|
|
private slots:
|
|
|
|
private:
|
|
MainWindow *parent;
|
|
};
|
|
|
|
#endif /* CLEAR_ITEMS_H */
|