SourceXtractorPlusPlus
0.15
Please provide a description of the project.
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
SEImplementation
SEImplementation
Plugin
BlendedFlag
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
27
#include "
SEFramework/Property/Property.h
"
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
:
42
bool
m_blended_flag
;
43
};
44
45
}
// end SourceXtractor
46
47
#endif // _SEIMPLEMENTATION_PLUGIN_BLENDEDFLAG_H_
SourceXtractor::BlendedFlag::BlendedFlag
BlendedFlag(bool blended_flag)
Definition:
BlendedFlag.h:35
Property.h
SourceXtractor::BlendedFlag
Definition:
BlendedFlag.h:31
SourceXtractor::Property
Base class for all Properties. (has no actual content)
Definition:
Property.h:33
SourceXtractor::BlendedFlag::getBlendedFlag
bool getBlendedFlag() const
Definition:
BlendedFlag.h:37
SourceXtractor::BlendedFlag::m_blended_flag
bool m_blended_flag
Definition:
BlendedFlag.h:42
SourceXtractor::BlendedFlag::~BlendedFlag
virtual ~BlendedFlag()=default
Generated by
1.8.5