The Gaudi Framework  master (ff829712)
Loading...
Searching...
No Matches
IVersHistoryObj.h
Go to the documentation of this file.
1/***********************************************************************************\
2* (c) Copyright 1998-2025 CERN for the benefit of the LHCb and ATLAS collaborations *
3* *
4* This software is distributed under the terms of the Apache version 2 licence, *
5* copied verbatim in the file "LICENSE". *
6* *
7* In applying this licence, CERN does not waive the privileges and immunities *
8* granted to it by virtue of its status as an Intergovernmental Organization *
9* or submit itself to any jurisdiction. *
10\***********************************************************************************/
11#pragma once
12
13#include <Gaudi/PropertyFwd.h>
14#include <GaudiKernel/Kernel.h> // GAUDI_API
15#include <string>
16#include <vector>
17
26
28public:
29 typedef std::vector<Gaudi::Details::PropertyBase*> PropertyList;
30
31public:
32 virtual ~IVersHistoryObj() = default;
33
34 virtual const std::string& name() const = 0;
35 virtual const std::string& type() const = 0;
36 virtual const std::string& version() const = 0;
37
38 virtual const PropertyList& properties() const = 0;
39};
#define GAUDI_API
Definition Kernel.h:49
Interface for Versioned History Objects.
virtual ~IVersHistoryObj()=default
virtual const std::string & name() const =0
virtual const PropertyList & properties() const =0
virtual const std::string & type() const =0
std::vector< Gaudi::Details::PropertyBase * > PropertyList
virtual const std::string & version() const =0