Mercurial > hg > qm-dsp
changeset 165:ec9f5b9801bd
No copy ctor etc, but copyright
author | Chris Cannam |
---|---|
date | Fri, 04 Apr 2014 13:49:59 +0100 |
parents | 4a70fff27b8f |
children | 36bcde3c13d8 |
files | maths/MedianFilter.h |
diffstat | 1 files changed, 16 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/maths/MedianFilter.h Fri Apr 04 12:40:40 2014 +0100 +++ b/maths/MedianFilter.h Fri Apr 04 13:49:59 2014 +0100 @@ -1,5 +1,18 @@ /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */ +/* + QM DSP Library + + Centre for Digital Music, Queen Mary, University of London. + This file Copyright 2010 Chris Cannam. + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation; either version 2 of the + License, or (at your option) any later version. See the file + COPYING included with this distribution for more information. +*/ + #ifndef MEDIAN_FILTER_H #define MEDIAN_FILTER_H @@ -85,6 +98,9 @@ for (int i = 0; i < n; ++i) point[i] = point[i+1]; *m_sortend = T(0); } + + MedianFilter(const MedianFilter &); // not provided + MedianFilter &operator=(const MedianFilter &); // not provided }; #endif