#ifndef AUDIT_OUTPUT_ABSTRACT_2006_12_29__ #define AUDIT_OUTPUT_ABSTRACT_2006_12_29__ /** @class AuditOutputAbstract.h @author Brian Magill @date 12/29/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 Abstract class for output objects for auditing */ //---------------------------------------------------------------------- // #include "Journal.h" class AuditOutputAbstract { public: virtual ~AuditOutputAbstract() { }; virtual void print(Journal const &) = 0; }; #endif