comparison dsp/segmentation/ClusterMeltSegmenter.h @ 491:7f2dadbdb544

Add include-guard
author Chris Cannam <cannam@all-day-breakfast.com>
date Fri, 31 May 2019 16:53:36 +0100
parents 175e51ae78eb
children bb78ca3fe7de
comparison
equal deleted inserted replaced
490:103156707542 491:7f2dadbdb544
10 modify it under the terms of the GNU General Public License as 10 modify it under the terms of the GNU General Public License as
11 published by the Free Software Foundation; either version 2 of the 11 published by the Free Software Foundation; either version 2 of the
12 License, or (at your option) any later version. See the file 12 License, or (at your option) any later version. See the file
13 COPYING included with this distribution for more information. 13 COPYING included with this distribution for more information.
14 */ 14 */
15
16 #ifndef QM_DSP_CLUSTER_MELT_SEGMENTER_H
17 #define QM_DSP_CLUSTER_MELT_SEGMENTER_H
15 18
16 #include <vector> 19 #include <vector>
17 20
18 #include "segment.h" 21 #include "segment.h"
19 #include "Segmenter.h" 22 #include "Segmenter.h"
105 int histogramLength; 108 int histogramLength;
106 int neighbourhoodLimit; 109 int neighbourhoodLimit;
107 110
108 Decimator *decimator; 111 Decimator *decimator;
109 }; 112 };
113
114 #endif