X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fpackage.cpp;h=799ad60a0aedde2a13839a1318b13d96c14138b3;hb=d0123337d70b0fb97b578cc57467bb94980f1014;hp=2684d0c9c944ecc0ee9845f1678d9445839262ce;hpb=1e61b0aa05e2351e33d909f7503eaf936a2d9bb0;p=metaproxy-moved-to-github.git diff --git a/src/package.cpp b/src/package.cpp index 2684d0c..799ad60 100644 --- a/src/package.cpp +++ b/src/package.cpp @@ -1,17 +1,30 @@ -/* $Id: package.cpp,v 1.8 2006-06-10 14:29:12 adam Exp $ - Copyright (c) 2005-2006, Index Data. +/* This file is part of Metaproxy. + Copyright (C) 2005-2009 Index Data - See the LICENSE file for details - */ +Metaproxy 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, or (at your option) any later +version. -#include "config.hpp" +Metaproxy 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 this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +*/ +#include "config.hpp" #include "package.hpp" +#include + namespace mp = metaproxy_1; mp::Package::Package() - : m_route_pos(0), m_data(0) + : m_route_pos(0) { } @@ -20,14 +33,16 @@ mp::Package::~Package() delete m_route_pos; } -mp::Package::Package(mp::Session &session, mp::Origin &origin) +mp::Package::Package(mp::Session &session, const mp::Origin &origin) : m_session(session), m_origin(origin), - m_route_pos(0), m_data(0) + m_route_pos(0) { } + mp::Package & mp::Package::copy_filter(const Package &p) { + delete m_route_pos; m_route_pos = p.m_route_pos->clone(); return *this; } @@ -60,23 +75,6 @@ mp::Session & mp::Package::session() return m_session; } - -int mp::Package::data() const -{ - return m_data; -} - -int & mp::Package::data() -{ - return m_data; -} - -mp::Package & mp::Package::data(const int & data) -{ - m_data = data; - return *this; -} - mp::Origin mp::Package::origin() const { return m_origin; @@ -114,12 +112,21 @@ mp::Session mp::Package::session() const { return m_session; } + +std::ostream& std::operator<<(std::ostream& os, mp::Package& p) +{ + os << p.origin() << " "; + os << p.session().id(); + return os; +} + /* * Local variables: * c-basic-offset: 4 + * c-file-style: "Stroustrup" * indent-tabs-mode: nil - * c-file-style: "stroustrup" * End: * vim: shiftwidth=4 tabstop=8 expandtab */ +