/** @class gatsDBpp::DBTable @brief Contains data and methods for the DBTables class. Not fully implemented. @date $Date$ @version $Rev$ @author - Lance Deaver @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. @bug None known @todo Write implementation $Id$ */ #include "DBTable.h" using namespace gatsDBpp; DBTable::DBTable() { } DBTable::DBTable(const std::string& tablename, const std::map& fields, const std::string& dbname, const std::string& typeName) : _tableName(tablename), _fields(fields), _dbName(dbname), _typeName(typeName) { } DBTable::~DBTable() { }