From 753ebedc0d95be753487e534dd0ffa9a5b6079a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Atgeirr=20Fl=C3=B8=20Rasmussen?= Date: Sun, 26 Feb 2012 20:20:37 +0100 Subject: [PATCH] Removed "hello polymer" test program. --- examples/Makefile.am | 4 --- examples/SayHello.cpp | 50 --------------------------- opm/polymer/HelloPolymer.hpp | 67 ------------------------------------ 3 files changed, 121 deletions(-) delete mode 100644 examples/SayHello.cpp delete mode 100644 opm/polymer/HelloPolymer.hpp diff --git a/examples/Makefile.am b/examples/Makefile.am index e5cfc7e05..2dfb52833 100644 --- a/examples/Makefile.am +++ b/examples/Makefile.am @@ -9,12 +9,8 @@ $(BOOST_FILESYSTEM_LIB) \ $(BOOST_SYSTEM_LIB) noinst_PROGRAMS = \ -hello \ polymer_reorder -hello_SOURCES = \ -SayHello.cpp - polymer_reorder_SOURCES = \ polymer_reorder.cpp \ Utilities.hpp \ diff --git a/examples/SayHello.cpp b/examples/SayHello.cpp deleted file mode 100644 index 871d0e857..000000000 --- a/examples/SayHello.cpp +++ /dev/null @@ -1,50 +0,0 @@ -/*=========================================================================== -// -// File: SayHello.cpp -// -// Created: 2012-02-01 16:14:51+0100 -// -// Authors: Knut-Andreas Lie -// Jostein R. Natvig -// Halvor M. Nilsen -// Atgeirr F. Rasmussen -// Xavier Raynaud -// Bård Skaflestad -// -//==========================================================================*/ - - -/* - Copyright 2012 SINTEF ICT, Applied Mathematics. - Copyright 2012 Statoil ASA. - - This file is part of the Open Porous Media Project (OPM). - - OPM 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 3 of the License, or - (at your option) any later version. - - OPM 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 OPM. If not, see . -*/ - -#include - -#include - -int main() -{ - Opm::Polymer::Hello world; - ::std::cout << world << '\n'; - - Opm::Polymer::Hello hello("World"); - ::std::cerr << hello << '\n'; - - return 0; -} diff --git a/opm/polymer/HelloPolymer.hpp b/opm/polymer/HelloPolymer.hpp deleted file mode 100644 index 9be93dab7..000000000 --- a/opm/polymer/HelloPolymer.hpp +++ /dev/null @@ -1,67 +0,0 @@ -/*=========================================================================== -// -// File: HelloPolymer.hpp -// -// Created: 2012-02-01 16:15:27+0100 -// -// Authors: Knut-Andreas Lie -// Jostein R. Natvig -// Halvor M. Nilsen -// Atgeirr F. Rasmussen -// Xavier Raynaud -// Bård Skaflestad -// -//==========================================================================*/ - - -/* - Copyright 2012 SINTEF ICT, Applied Mathematics. - Copyright 2012 Statoil ASA. - - This file is part of the Open Porous Media Project (OPM). - - OPM 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 3 of the License, or - (at your option) any later version. - - OPM 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 OPM. If not, see . -*/ - -#ifndef OPM_HELLOPOLYMER_HPP_HEADER -#define OPM_HELLOPOLYMER_HPP_HEADER - -#include - -namespace Opm { - namespace Polymer { - class Hello { - public: - Hello(const ::std::string& dsgn = ::std::string("world")) - : designee_(dsgn) - {} - - template - friend - Ostream& - operator<< (Ostream& os, const Hello& h); - - private: - ::std::string designee_; - }; - - template - Ostream & - operator<<(Ostream& os, const Hello& h) { - os << "Polymer::Hello, " << h.designee_; - return os; - } - } // namespace Polymer -} // namespace Opm -#endif /* OPM_HELLOPOLYMER_HPP_HEADER */