#ifndef GENERIC_LEVEL1_AUDIT_ABSTRACT_2006_10_08__ #define GENERIC_LEVEL1_AUDIT_ABSTRACT_2006_10_08__ /** @class AuditAbstract.h @author Brian Magill @date 10/08/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 producing an audit trail */ //---------------------------------------------------------------------- // #include #include "Journal.h" class AuditAbstract { public: virtual ~AuditAbstract() { }; virtual Journal getAudit() const = 0; virtual void auditAdd(std::string actionItem) = 0; virtual void auditAdd(Journal journ) = 0; virtual int getEventNumber() const = 0; virtual std::string getDataName() const = 0; }; #endif