SourceXtractorPlusPlus
0.13
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
PeakValue
PeakValue.h
Go to the documentation of this file.
1
17
/*
18
* PeakValue.h
19
*
20
* Created on: Feb 9, 2017
21
* Author: mschefer
22
*/
23
24
#ifndef _SEIMPLEMENTATION_PLUGIN_PEAKVALUE_PEAKVALUE_H_
25
#define _SEIMPLEMENTATION_PLUGIN_PEAKVALUE_PEAKVALUE_H_
26
27
#include "
SEUtils/Types.h
"
28
#include "
SEFramework/Property/Property.h
"
29
30
namespace
SourceXtractor {
31
32
class
PeakValue
:
public
Property
{
33
public
:
34
35
virtual
~PeakValue
() =
default
;
36
37
PeakValue
(
SeFloat
min_value,
SeFloat
max_value) :
m_min_value
(min_value),
m_max_value
(max_value) {}
38
39
SeFloat
getMinValue
()
const
{
40
return
m_min_value
;
41
}
42
43
SeFloat
getMaxValue
()
const
{
44
return
m_max_value
;
45
}
46
47
private
:
48
SeFloat
m_min_value
,
m_max_value
;
49
50
};
51
52
}
/* namespace SourceXtractor */
53
54
55
56
57
58
#endif
/* SEIMPLEMENTATION_SEIMPLEMENTATION_PLUGIN_PEAKVALUE_PEAKVALUE_H_ */
SourceXtractor::PeakValue::m_min_value
SeFloat m_min_value
Definition:
PeakValue.h:48
Types.h
SourceXtractor::PeakValue::PeakValue
PeakValue(SeFloat min_value, SeFloat max_value)
Definition:
PeakValue.h:37
SourceXtractor::PeakValue::getMinValue
SeFloat getMinValue() const
Definition:
PeakValue.h:39
Property.h
SourceXtractor::SeFloat
SeFloat32 SeFloat
Definition:
Types.h:32
SourceXtractor::PeakValue::~PeakValue
virtual ~PeakValue()=default
SourceXtractor::Property
Base class for all Properties. (has no actual content)
Definition:
Property.h:33
SourceXtractor::PeakValue::m_max_value
SeFloat m_max_value
Definition:
PeakValue.h:48
SourceXtractor::PeakValue
Definition:
PeakValue.h:32
SourceXtractor::PeakValue::getMaxValue
SeFloat getMaxValue() const
Definition:
PeakValue.h:43
Generated by
1.8.5