X-Git-Url: http://lists.indexdata.com/cgi-bin?a=blobdiff_plain;f=src%2Fplainfile.cpp;h=4fba6cf39429b37c17ccdc51dd40ec520c439c7c;hb=94e341af1ed1bcb064089db64836015844c3dcd7;hp=07361aadb53cc05212c17652c7b5c57441490577;hpb=f47e8cf4cde2ba5465106e219c803e6424a4f177;p=metaproxy-moved-to-github.git diff --git a/src/plainfile.cpp b/src/plainfile.cpp index 07361aa..4fba6cf 100644 --- a/src/plainfile.cpp +++ b/src/plainfile.cpp @@ -1,7 +1,22 @@ -/* $Id: plainfile.cpp,v 1.1 2006-01-25 11:27:19 adam Exp $ - Copyright (c) 2005, Index Data. +/* $Id: plainfile.cpp,v 1.5 2007-05-09 21:23:09 adam Exp $ + Copyright (c) 2005-2007, Index Data. -%LICENSE% +This file is part of Metaproxy. + +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. + +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 Metaproxy; see the file LICENSE. If not, write to the +Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA +02111-1307, USA. */ #include "config.hpp" @@ -15,7 +30,9 @@ #define PLAINFILE_MAX_LINE 256 -namespace yp2 { +namespace mp = metaproxy_1; + +namespace metaproxy_1 { class PlainFile::Rep { friend class PlainFile; Rep(); @@ -25,28 +42,28 @@ namespace yp2 { }; } -yp2::PlainFile::Rep::Rep() : lineno(1) +mp::PlainFile::Rep::Rep() : lineno(1) { fh = 0; } -yp2::PlainFile::PlainFile() : m_p(new Rep) +mp::PlainFile::PlainFile() : m_p(new Rep) { } -void yp2::PlainFile::Rep::close() +void mp::PlainFile::Rep::close() { delete fh; fh = 0; lineno = 0; } -yp2::PlainFile::~PlainFile() +mp::PlainFile::~PlainFile() { m_p->close(); } -bool yp2::PlainFile::open(const std::string &fname) +bool mp::PlainFile::open(const std::string &fname) { m_p->close(); @@ -60,7 +77,7 @@ bool yp2::PlainFile::open(const std::string &fname) return true; } -bool yp2::PlainFile::getline(std::vector &args) +bool mp::PlainFile::getline(std::vector &args) { args.clear();