#ifndef DRIFT_SIGNAL_PARAMETER_CODER_1_05_2007 #define DRIFT_SIGNAL_PARAMETER_CODER_1_05_2007 /** @file DriftCoder.h @author Brian Magill @date 1/05/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 Encodes DriftParam objects in relation to an Event object */ #include #include "DriftParam.h" #include "Event.h" class DriftCoder { private: std::vector paramVect; public: DriftCoder(std::vector const &vec ): paramVect(vec) { }; explicit DriftCoder( ): paramVect(0) { }; DriftCoder(DriftCoder const &rhs): paramVect(rhs.paramVect) { }; DriftCoder const & operator = (DriftCoder const &rhs) { if (this == &rhs) return *this; paramVect = rhs.paramVect; return *this; }; ~DriftCoder() { }; void operator()(Event &) const; }; #endif