Line data Source code
1 : //-*- Mode: C++ -*-
2 : // $Id$
3 :
4 : #ifndef ALIHLTQAAGENT_H
5 : #define ALIHLTQAAGENT_H
6 : //* This file is property of and copyright by the ALICE HLT Project *
7 : //* ALICE Experiment at CERN, All rights reserved. *
8 : //* See cxx source for full Copyright notice *
9 :
10 : /** @file AliHLTQAAgent.h
11 : @author Matthias Richter
12 : @date 2010-03-10
13 : @brief Module Agent for HLTqadm library
14 : */
15 :
16 : #include "AliHLTModuleAgent.h"
17 :
18 : class AliHLTQAAgent: public AliHLTModuleAgent {
19 : public:
20 : AliHLTQAAgent();
21 : virtual ~AliHLTQAAgent();
22 :
23 : /// inherited from AliHLTModuleAgent
24 : const char* GetQAPlugins() const;
25 :
26 : protected:
27 : private:
28 : /** copy constructor prohibited */
29 : AliHLTQAAgent(const AliHLTQAAgent&);
30 : /** assignment operator prohibited */
31 : AliHLTQAAgent& operator = (const AliHLTQAAgent&);
32 :
33 6 : ClassDef(AliHLTQAAgent,0) // Module Agent for HLTqadm library
34 : };
35 :
36 : #endif // ALIHLTQAAGENT_H
|