- removed unused files serializer_visitor.??

git-svn-id: svn://svn.gna.org/svn/sgpemv2/trunk@765 3ecf2c5c-341e-0410-92b4-d18e462d057c
This commit is contained in:
paolo 2006-07-15 01:31:38 +00:00
parent 88d5ca2fe1
commit 6ea402f012
2 changed files with 0 additions and 82 deletions

View File

@ -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()
{}

View File

@ -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 <glibmm/ustring.h>
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