#ifndef CHECK_DARK_ABSTRACT_2007_06_14 #define CHECK_DARK_ABSTRACT_2007_06_14 /** @class CheckDarkAbstract.h @author Brian Magill @date 6/14/2007 $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 Abstract class for producing an audit trail */ //---------------------------------------------------------------------- // class CheckDarkAbstract { public: virtual ~CheckDarkAbstract() { }; virtual bool verify(double) = 0; }; #endif