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