/** @class PerformAudit.cpp @author Brian Magill @datecreated 10/09/2006 $Date: 2006/10/09 22:22:24 $ $Revision: 1.2 $ @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 PerformAudit class definitions */ //---------------------------------------------------------------------- // #include #include #include "PerformAudit.h" //#include "DBConn.h" using namespace std; void PerformAudit::operator() (AuditAbstract const & dataObj) const { if(auditOut == 0) {throw runtime_error("PerformAudit::No audit ouput stream connected"); } auditOut->print(dataObj.getAudit()); };