ATLAS Offline Software
Loading...
Searching...
No Matches
IHiveTool.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2026 CERN for the benefit of the ATLAS collaboration
3*/
4
5#ifndef ATHEXHIVE_IHIVETOOL
6#define ATHEXHIVE_IHIVETOOL
7
8#include "GaudiKernel/IAlgTool.h"
9
10class EventContext;
11
12class IHiveTool : virtual public IAlgTool {
13public:
14 virtual StatusCode doSomething(const EventContext& ctx) const = 0;
15 virtual ~IHiveTool() {};
16
18
19};
20#endif // !ATHEXHIVE_IHIVETOOL
virtual StatusCode doSomething(const EventContext &ctx) const =0
DeclareInterfaceID(IHiveTool, 1, 0)
virtual ~IHiveTool()
Definition IHiveTool.h:15