SourceXtractorPlusPlus 1.0.3
SourceXtractor++, the next generation SExtractor
Loading...
Searching...
No Matches
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
29namespace SourceXtractor {
30
31class BlendedFlag : public Property {
32public:
33 virtual ~BlendedFlag() = default;
34
35 explicit BlendedFlag(bool blended_flag) : m_blended_flag{blended_flag} {}
36
37 bool getBlendedFlag() const {
38 return m_blended_flag;
39 }
40
41private:
43};
44
45} // end SourceXtractor
46
47#endif // _SEIMPLEMENTATION_PLUGIN_BLENDEDFLAG_H_
BlendedFlag(bool blended_flag)
Definition BlendedFlag.h:35
virtual ~BlendedFlag()=default
Base class for all Properties. (has no actual content)
Definition Property.h:33