#ifndef SIGNAL_CORRECTION_CONNECTION_ABSTRACT_12_15_2006 #define SIGNAL_CORRECTION_CONNECTION_ABSTRACT_12_15_2006 /** @class SigCorrectConnAbstract.h @author Brian Magill @date 12/15/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 SignalCorrection data connections */ #include class SigCorrectConnAbstract { public: virtual ~SigCorrectConnAbstract() { }; virtual bool isConnected() const = 0; // virtual std::vector getBalanceParam() const = 0; virtual std::vector getDiffGainParam() const = 0; }; #endif