From 6ea402f012df4618acd288c9275ec74eba6c7440 Mon Sep 17 00:00:00 2001 From: paolo Date: Sat, 15 Jul 2006 01:31:38 +0000 Subject: [PATCH] - removed unused files serializer_visitor.?? git-svn-id: svn://svn.gna.org/svn/sgpemv2/trunk@765 3ecf2c5c-341e-0410-92b4-d18e462d057c --- src/backend/serializer_visitor.cc | 27 --------------- src/backend/serializer_visitor.hh | 55 ------------------------------- 2 files changed, 82 deletions(-) delete mode 100644 src/backend/serializer_visitor.cc delete mode 100644 src/backend/serializer_visitor.hh diff --git a/src/backend/serializer_visitor.cc b/src/backend/serializer_visitor.cc deleted file mode 100644 index 15eb833..0000000 --- a/src/backend/serializer_visitor.cc +++ /dev/null @@ -1,27 +0,0 @@ -// src/backend/serialize_visitor.cc - Copyright 2005, 2006, University -// of Padova, dept. of Pure and Applied -// Mathematics -// -// This file is part of SGPEMv2. -// -// This is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// SGPEMv2 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 General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with SGPEMv2; if not, write to the Free Software -// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - -#include "serializer_visitor.hh" - -using namespace sgpem; - -SerializerVisitor::~SerializerVisitor() -{} - diff --git a/src/backend/serializer_visitor.hh b/src/backend/serializer_visitor.hh deleted file mode 100644 index 38964ff..0000000 --- a/src/backend/serializer_visitor.hh +++ /dev/null @@ -1,55 +0,0 @@ -// src/backend/serialize_visitor.hh - Copyright 2005, 2006, University -// of Padova, dept. of Pure and Applied -// Mathematics -// -// This file is part of SGPEMv2. -// -// This is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// SGPEMv2 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 General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with SGPEMv2; if not, write to the Free Software -// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - -#ifndef SERIALIZER_VISITOR_HH -#define SERIALIZER_VISITOR_HH 1 - -namespace sgpem -{ - class Resource; - class Process; - class Thread; - class Request; - class SubRequest; -} - -#include "config.h" - -#include - -namespace sgpem -{ - class SerializerVisitor; - - class SerializerVisitor - { - public: - virtual ~SerializerVisitor() = 0; - - virtual void from_resource(const Resource& obj) = 0; - virtual void from_process(const Process& obj) = 0; - virtual void from_thread(const Thread& obj) = 0; - virtual void from_request(const Request& obj) = 0; - virtual void from_subrequest(const SubRequest& obj) = 0; - }; -} - -#endif -