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