ATLAS Offline Software
Classes | Functions
IOVRange.h File Reference

Validity Range object. Holds two IOVTime instances (start and stop) More...

#include "AthenaKernel/IOVTime.h"
#include <string>
#include <iosfwd>
Include dependency graph for IOVRange.h:

Go to the source code of this file.

Classes

class  IOVRange
 Validity Range object. Holds two IOVTimes (start and stop) More...
 

Functions

bool operator== (const IOVRange &lhs, const IOVRange &rhs)
 
bool operator!= (const IOVRange &lhs, const IOVRange &rhs)
 

Detailed Description

Validity Range object. Holds two IOVTime instances (start and stop)

Author
Charles Leggett
Id
IOVRange.h,v 1.4 2008-10-31 22:43:07 leggett Exp

Definition in file IOVRange.h.

Function Documentation

◆ operator!=()

bool operator!= ( const IOVRange lhs,
const IOVRange rhs 
)
inline

Definition at line 67 of file IOVRange.h.

67  {
68  return ! (lhs == rhs);
69 }

◆ operator==()

bool operator== ( const IOVRange lhs,
const IOVRange rhs 
)
inline

Definition at line 62 of file IOVRange.h.

62  {
63  return lhs.m_start==rhs.m_start &&
64  lhs.m_stop==rhs.m_stop ;
65 }
IOVRange::m_stop
IOVTime m_stop
Definition: IOVRange.h:57
IOVRange::m_start
IOVTime m_start
Definition: IOVRange.h:56