SourceXtractorPlusPlus  0.11
Please provide a description of the project.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
BlendedFlag.h
Go to the documentation of this file.
1 
17 /*
18  * BlendedFlag.h
19  *
20  * Created on: Oct 29, 2018
21  * Author: Alejandro Alvarez Ayllon
22  */
23 
24 #ifndef _SEIMPLEMENTATION_PLUGIN_BLENDEDFLAG_H_
25 #define _SEIMPLEMENTATION_PLUGIN_BLENDEDFLAG_H_
26 
28 
29 namespace SourceXtractor {
30 
31 class BlendedFlag : public Property {
32 public:
33  virtual ~BlendedFlag() = default;
34 
35  BlendedFlag(bool blended_flag) : m_blended_flag{blended_flag} {}
36 
37  bool getBlendedFlag() const {
38  return m_blended_flag;
39  }
40 
41 private:
43 };
44 
45 } // end SourceXtractor
46 
47 #endif // _SEIMPLEMENTATION_PLUGIN_BLENDEDFLAG_H_
BlendedFlag(bool blended_flag)
Definition: BlendedFlag.h:35
Base class for all Properties. (has no actual content)
Definition: Property.h:33
bool getBlendedFlag() const
Definition: BlendedFlag.h:37
virtual ~BlendedFlag()=default