#ifndef __SIGNAL_ABSTRACT_ALGORITHM_CLASS_11_21_2006__ #define __SIGNAL_ABSTRACT_ALGORITHM_CLASS_11_21_2006__ /** @class SigAlgoAbstract.h @author Brian Magill @date 11/21/2006 $Date:$ $Revision:$ @copyright (©) Copyright 2006 by GATS Inc. 11864 Canon Blvd., Suite 101, Newport News, VA 23606 All Rights Reserved. No part of this software or publication may be reproduced, stored in a retrieval system, or transmitted, in any form or by any means, electronic, mechanical, photocopying, recording, or otherwise without the prior written permission of GATS Inc. @brief Base class for signal algorithm classes */ #include #include #include "ChannelSignals.h" class SigAlgoAbstract { public: virtual ~SigAlgoAbstract() { }; virtual void applyCorrection(std::valarray const &time, ChannelSignals const & inChannel, ChannelSignals & outChannel, std::string & comments) const = 0; virtual std::string getName() const = 0; virtual void dump() const = 0; }; #endif