Revision: 44675
http://brlcad.svn.sourceforge.net/brlcad/?rev=44675&view=rev
Author: davidloman
Date: 2011-05-25 11:05:11 +0000 (Wed, 25 May 2011)
Log Message:
-----------
Drop antiquated DbObject and DbObjectManifest classes. No longer useful
Modified Paths:
--------------
geomcore/trunk/src/GS/CMakeLists.txt
Removed Paths:
-------------
geomcore/trunk/include/DbObject.h
geomcore/trunk/src/GS/DbObject.cxx
geomcore/trunk/src/GS/DbObjectManifest.cxx
geomcore/trunk/src/GS/DbObjectManifest.h
Deleted: geomcore/trunk/include/DbObject.h
===================================================================
--- geomcore/trunk/include/DbObject.h 2011-05-24 20:24:12 UTC (rev 44674)
+++ geomcore/trunk/include/DbObject.h 2011-05-25 11:05:11 UTC (rev 44675)
@@ -1,65 +0,0 @@
-/* D B O B J E C T . H
- * BRL-CAD
- *
- * Copyright (c) 2011 United States Government as represented by
- * the U.S. Army Research Laboratory.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public License
- * version 2.1 as published by the Free Software Foundation.
- *
- * This library is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this file; see the file named COPYING for more
- * information.
- */
-/** @file DbObject.h
- * DbObject.h
- *
- * Created on: Sep 29, 2010
- *
- */
-
-#ifndef __DBOBJECT_H__
-#define __DBOBJECT_H__
-
-#include <string>
-#include <ByteBuffer.h>
-#include "GSUuid.h"
-
-class DbObject
-{
-public:
- DbObject(std::string path, ByteBuffer* data);
- DbObject(GSUuid* id, ByteBuffer* data);
- virtual ~DbObject();
-
- std::string getPath();
- GSUuid* getID();
- ByteBuffer* getData();
-
-private:
- std::string path;
- GSUuid* id;
- ByteBuffer* data;
-
- /* Disable copy cstr and =operator */
- DbObject(DbObject const&){};
- DbObject& operator=(DbObject const&){};
-};
-
-#endif /* __DBOBJECT_H__ */
-
-/*
- * Local Variables:
- * tab-width: 8
- * mode: C
- * indent-tabs-mode: t
- * c-file-style: "stroustrup"
- * End:
- * ex: shiftwidth=4 tabstop=8
- */
Modified: geomcore/trunk/src/GS/CMakeLists.txt
===================================================================
--- geomcore/trunk/src/GS/CMakeLists.txt 2011-05-24 20:24:12 UTC (rev
44674)
+++ geomcore/trunk/src/GS/CMakeLists.txt 2011-05-25 11:05:11 UTC (rev
44675)
@@ -40,8 +40,6 @@
DataManager.cxx
FileDataSource.cxx
SvnDataSource.cxx
- DbObjectManifest.cxx
- DbObject.cxx
Session.cxx
SessionManager.cxx
Account.cxx
@@ -88,7 +86,6 @@
DataManager.h
FileDataSource.h
SvnDataSource.h
- DbObject.h
GSClient.h
GSCmdLineClient.h
ClientCmdRegistry.h
Deleted: geomcore/trunk/src/GS/DbObject.cxx
===================================================================
--- geomcore/trunk/src/GS/DbObject.cxx 2011-05-24 20:24:12 UTC (rev 44674)
+++ geomcore/trunk/src/GS/DbObject.cxx 2011-05-25 11:05:11 UTC (rev 44675)
@@ -1,67 +0,0 @@
-/* D B O B J E C T . C X X
- * BRL-CAD
- *
- * Copyright (c) 2011 United States Government as represented by
- * the U.S. Army Research Laboratory.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public License
- * version 2.1 as published by the Free Software Foundation.
- *
- * This library is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this file; see the file named COPYING for more
- * information.
- */
-/** @file DbObject.cxx
- *
- */
-
-#include "DbObject.h"
-
-DbObject::DbObject(std::string path, ByteBuffer* data)
-: path(path),
- id(NULL),
- data(data)
-{}
-
-DbObject::DbObject(GSUuid* id, ByteBuffer* data)
-: path(""),
- id(id),
- data(data)
-{}
-
-DbObject::~DbObject()
-{}
-
-std::string
-DbObject::getPath()
-{
- return this->path;
-}
-
-GSUuid*
-DbObject::getID()
-{
- return this->id;
-}
-
-ByteBuffer*
-DbObject::getData()
-{
- return this->data;
-}
-
-/*
- * Local Variables:
- * tab-width: 8
- * mode: C
- * indent-tabs-mode: t
- * c-file-style: "stroustrup"
- * End:
- * ex: shiftwidth=4 tabstop=8
- */
Deleted: geomcore/trunk/src/GS/DbObjectManifest.cxx
===================================================================
--- geomcore/trunk/src/GS/DbObjectManifest.cxx 2011-05-24 20:24:12 UTC (rev
44674)
+++ geomcore/trunk/src/GS/DbObjectManifest.cxx 2011-05-25 11:05:11 UTC (rev
44675)
@@ -1,40 +0,0 @@
-/* D B O B J E C T M A N I F E S T . C X X
- * BRL-CAD
- *
- * Copyright (c) 2011 United States Government as represented by
- * the U.S. Army Research Laboratory.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public License
- * version 2.1 as published by the Free Software Foundation.
- *
- * This library is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this file; see the file named COPYING for more
- * information.
- */
-/** @file DbObjectManifest.cxx
- *
- */
-
-#include "DbObjectManifest.h"
-
-DbObjectManifest::DbObjectManifest()
-{}
-
-DbObjectManifest::~DbObjectManifest()
-{}
-
-/*
- * Local Variables:
- * tab-width: 8
- * mode: C
- * indent-tabs-mode: t
- * c-file-style: "stroustrup"
- * End:
- * ex: shiftwidth=4 tabstop=8
- */
Deleted: geomcore/trunk/src/GS/DbObjectManifest.h
===================================================================
--- geomcore/trunk/src/GS/DbObjectManifest.h 2011-05-24 20:24:12 UTC (rev
44674)
+++ geomcore/trunk/src/GS/DbObjectManifest.h 2011-05-25 11:05:11 UTC (rev
44675)
@@ -1,55 +0,0 @@
-/* D B O B J E C T M A N I F E S T . H
- * BRL-CAD
- *
- * Copyright (c) 2011 United States Government as represented by
- * the U.S. Army Research Laboratory.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public License
- * version 2.1 as published by the Free Software Foundation.
- *
- * This library is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this file; see the file named COPYING for more
- * information.
- */
-/** @file DbObjectManifest.h
- *
- */
-
-#ifndef __DBOBJECTMANIFEST_H__
-#define __DBOBJECTMANIFEST_H__
-
-#include <list>
-#include <map>
-#include <string>
-
-#include "GSUuid.h"
-
-class DbObjectManifest
-{
-public:
- DbObjectManifest();
- virtual ~DbObjectManifest();
-
-private:
- std::list<GSUuid*> DbObjectList;
- std::map<GSUuid*, std::string > DbObjectMap;
-};
-
-#endif /* __DBOBJECTMANIFEST_H__ */
-
-/*
- * Local Variables:
- * tab-width: 8
- * mode: C
- * indent-tabs-mode: t
- * c-file-style: "stroustrup"
- * End:
- * ex: shiftwidth=4 tabstop=8
- */
-
This was sent by the SourceForge.net collaborative development platform, the
world's largest Open Source development site.
------------------------------------------------------------------------------
vRanger cuts backup time in half-while increasing security.
With the market-leading solution for virtual backup and recovery,
you get blazing-fast, flexible, and affordable data protection.
Download your free trial now.
http://p.sf.net/sfu/quest-d2dcopy1
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits