30 lines
525 B
C
30 lines
525 B
C
|
#ifndef SETTING_SUMMARY_H
|
||
|
#define SETTING_SUMMARY_H
|
||
|
|
||
|
#include <TQObject.h>
|
||
|
#include <RQ_OBJECT.h>
|
||
|
#include <TGNumberEntry.h>
|
||
|
#include <TGButton.h>
|
||
|
#include <TGComboBox.h>
|
||
|
#include <TThread.h>
|
||
|
#include <TGLabel.h>
|
||
|
#include "DigitizerPHA.h"
|
||
|
#include "DigitizerPSD.h"
|
||
|
#include "macro.h"
|
||
|
|
||
|
class TGWindow;
|
||
|
class TGMainFrame;
|
||
|
|
||
|
class SettingSummary{
|
||
|
|
||
|
private:
|
||
|
|
||
|
|
||
|
public:
|
||
|
SettingSummary(const TGWindow *p, UInt_t w, UInt_t h, Digitizer ** digi, int nBoard, uint32_t address);
|
||
|
virtual ~SettingSummary();
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|