OPAL (Object Oriented Parallel Accelerator Library)  2021.1.99
OPAL
UpperCaseStringArray.h
Go to the documentation of this file.
1 //
2 // Class UpperCaseStringArray
3 // This class is used to parse attributes of type array of strings that should
4 // be all upper case, i.e. it returns an array of upper case strings.
5 //
6 // Copyright (c) 2020, Matthias Frey, Paul Scherrer Institut, Villigen PSI, Switzerland
7 // All rights reserved
8 //
9 // This file is part of OPAL.
10 //
11 // OPAL is free software: you can redistribute it and/or modify
12 // it under the terms of the GNU General Public License as published by
13 // the Free Software Foundation, either version 3 of the License, or
14 // (at your option) any later version.
15 //
16 // You should have received a copy of the GNU General Public License
17 // along with OPAL. If not, see <https://www.gnu.org/licenses/>.
18 //
19 #ifndef OPAL_UpperCaseStringArray_HH
20 #define OPAL_UpperCaseStringArray_HH
21 
25 
26 
27 namespace Attributes {
28 
31 
32  public:
33 
35  // Assign attribute name and help string.
36  UpperCaseStringArray(const std::string &name, const std::string &help);
37 
38  virtual ~UpperCaseStringArray();
39 
41  virtual const std::string &getType() const;
42 
44  virtual void parse(Attribute &, Statement &, bool) const;
45 
47  // Identified by its index.
48  virtual void parseComponent(Attribute &, Statement &, bool, int) const;
49 
50  private:
51 
52  // Not implemented.
56  };
57 
58 };
59 
60 #endif
const std::string name
A collection of routines to construct object Attributes and retrieve.
Definition: Attributes.cpp:85
A representation of an Object attribute.
Definition: Attribute.h:52
Abstract base class for attribute parsers.
Parser for an attribute of type string array.
virtual const std::string & getType() const
Return attribute type string `‘string array’'.
virtual void parse(Attribute &, Statement &, bool) const
Parse the attribute.
void operator=(const UpperCaseStringArray &)
virtual void parseComponent(Attribute &, Statement &, bool, int) const
Parse a component of the array.
UpperCaseStringArray(const UpperCaseStringArray &)
Interface for statements.
Definition: Statement.h:38