PixieDAQ/mainSettings.h

28 lines
400 B
C
Raw Normal View History

#ifndef MAIN_SETTING_H
#define MAIN_SETTING_H
#include <TQObject.h>
2022-03-15 19:59:36 -04:00
#include "Pixie16Class.h"
class TGWindow;
class TGMainFrame;
class MainSettings{
private:
TGMainFrame * fMain;
2022-03-15 19:59:36 -04:00
Pixie16 * pixie;
public:
2022-03-15 19:59:36 -04:00
MainSettings(const TGWindow *p, UInt_t w, UInt_t h, Pixie16 * pixie);
virtual ~MainSettings();
2022-03-15 19:59:36 -04:00
void CloseWindow() { printf("close window\n"); delete this; }
};
#endif