# HG changeset patch # User Chris Cannam # Date 1396615799 -3600 # Node ID ec9f5b9801bd0c313a55322a1cdff6bdb9f3ec3b # Parent 4a70fff27b8f72e45abf69fa0347746d44295a89 No copy ctor etc, but copyright diff -r 4a70fff27b8f -r ec9f5b9801bd maths/MedianFilter.h --- 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