ATLAS Offline Software
Loading...
Searching...
No Matches
RegSelName.h
Go to the documentation of this file.
1// emacs: this is -*- c++ -*-
2
3/*
4 Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
5*/
6
7/**************************************************************************
8 **
9 ** File: RegSelname.h
10 **
11 ** Description:
12 **
13 **
14 **
15 ** Author: M.Sutton
16 **
17 ** Created: Thu Apr 5 22:47:41 BST 2007
18 ** Modified:
19 **
20 **
21 **
22 **************************************************************************/
23
24
25#ifndef __REGSELNAME_H
26#define __REGSELNAME_H
27
28#include <string>
29
30
31
32
34
35public:
36
37 RegSelName(const std::string& s="") : m_name(s) { }
38
39 const std::string& getName() const { return m_name; }
40
41 RegSelName& operator=(const std::string& s) { m_name=s; return *this; }
42
43protected:
44
45 std::string m_name;
46
47};
48
49
50
51#endif /* __REGSELNAME_H */
52
53
54
55
56
57
58
59
60
61
RegSelName & operator=(const std::string &s)
Definition RegSelName.h:41
const std::string & getName() const
Definition RegSelName.h:39
std::string m_name
Definition RegSelName.h:45
RegSelName(const std::string &s="")
Definition RegSelName.h:37