#ifndef DELETE_FROM_TABLES_2007_03_13 #define DELETE_FROM_TABLES_2007_03_13 /** @file DeleteFromTables.h @author Brian Magill @date 3/13/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 Class returns a vector of data associated with a given table parameter */ //---------------------------------------------------------------------- // #include #include #include "GATS_DB.h" #include "GATS_DB_Exception.h" //#include "GATS_Utilities.hpp" class DeleteFromTables { private: gatsDBpp::GATS_DB *dbConn; public: DeleteFromTables():dbConn(0){ }; DeleteFromTables(gatsDBpp::GATS_DB &conn):dbConn(&conn) { }; DeleteFromTables(DeleteFromTables const&rhs):dbConn(rhs.dbConn){ }; DeleteFromTables& operator = (DeleteFromTables const& rhs ) { if (this == &rhs) return *this; dbConn = rhs.dbConn; return *this; }; ~DeleteFromTables() { }; void operator()(std::vector const & list, int event) const; }; #endif