]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/EMCAL/OnlineDisplay/AliHLTEMCALGetEventButton.h
Coverity 17737 solved by non-implemented private copy constructor and assignment...
[u/mrichter/AliRoot.git] / HLT / EMCAL / OnlineDisplay / AliHLTEMCALGetEventButton.h
CommitLineData
fcbe44bf 1//-*- Mode: C++ -*-
2// $Id: AliHLTEMCALGetEventButton.h 29824 2008-11-10 13:43:55Z richterm $
3
4#ifndef ALIHLTEMCALGETEVENTBUTTON_H
5#define ALIHLTEMCALGETEVENTBUTTON_H
6/* Copyright(c) 1998-2007, ALICE Experiment at CERN, All rights reserved. *
7 * See cxx source for full Copyright notice */
8
9#include <TGButton.h>
10#include <TGFrame.h>
11
12class AliHLTEMCALOnlineDisplay;
13
14class AliHLTEMCALGetEventButton : public TGTextButton
15{
16 public:
17 AliHLTEMCALGetEventButton();
18 AliHLTEMCALGetEventButton(TGGroupFrame *gfPtr, char *name, char opt ='e');
19 AliHLTEMCALGetEventButton(TGCompositeFrame *gfPtr, char *name, char opt='e');
20 // AliHLTEMCALGetEventButton(AliHLTEMCALOnlineDisplay *gfPtr, char *name);
21 virtual Bool_t HandleButton(Event_t* event);
22 private:
23 AliHLTEMCALOnlineDisplay* onlineDisplayPtr;
24 char fOption;
25};
26
27#endif