ATLAS Offline Software
SillyKey.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 #ifndef STOREGATE_SILLYKEY_H
6 #define STOREGATE_SILLYKEY_H 1
7 
8 #include <string>
9 
10 class SillyKey {
11 public:
12  SillyKey(const std::string aString) : m_string(aString) {}
13  inline operator std::string() const {return m_string;}
14 
15 private:
16  std::string m_string;
17 
18 };
19 
20 #endif
SillyKey::SillyKey
SillyKey(const std::string aString)
Definition: SillyKey.h:12
SillyKey
Definition: SillyKey.h:10
SillyKey::m_string
std::string m_string
Definition: SillyKey.h:16