ATLAS Offline Software
Loading...
Searching...
No Matches
INamedInterface.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
3*/
4
6
7
8
9#ifndef ASG_MESSAGING__I_NAMED_INTERFACE_H
10#define ASG_MESSAGING__I_NAMED_INTERFACE_H
11
12#ifndef XAOD_STANDALONE
13
14#include "GaudiKernel/INamedInterface.h"
15
16#else
17
18#include <string>
19
20class INamedInterface
21{
23public:
24 virtual ~INamedInterface () noexcept = default;
25
27public:
28 virtual const std::string& name() const = 0;
29};
30
31#endif
32
33
34#endif