Create minimum buildable Polymer module for OPM.

This commit is contained in:
Bård Skaflestad 2012-02-01 16:16:30 +01:00
commit a785d9488e
7 changed files with 194 additions and 0 deletions

33
.hgignore Normal file
View File

@ -0,0 +1,33 @@
syntax: glob
*~
*.o
*.lo
*.la
.libs
.deps
*.pc
stamp-*
.dirstamp
Makefile
Makefile.in
Doxyfile
Doxyfile.in
aclocal.m4
autom4te.cache
config.*
configure
compile
depcomp
dependencies.m4
install-sh
libtool
ltmain.sh
m4/libtool.m4
m4/lt*.m4
missing
# Ignoring executables
*_test
examples/hello

6
Makefile.am Normal file
View File

@ -0,0 +1,6 @@
ACLOCAL_AMFLAGS = -I m4
SUBDIRS = . examples
nobase_include_HEADERS = \
opm/polymer/HelloPolymer.hpp

34
configure.ac Normal file
View File

@ -0,0 +1,34 @@
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.65])
AC_INIT([OPM Polymer Module], [0.1], [atgeirr@sintef.no],dnl
[opmpolymer], [https://public.ict.sintef.no/opm/hg/opm-polymer])
AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects])
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
m4_ifdef([LT_INIT], [LT_INIT])
AC_CONFIG_SRCDIR([opm/polymer/HelloPolymer.hpp])
AC_CONFIG_HEADERS([config.h])
# Checks for programs.
AC_PROG_CXX
AM_PROG_CC_C_O
m4_ifdef([LT_INIT], [], [AC_PROG_LIBTOOL])
# Checks for libraries.
# Checks for header files.
# Checks for typedefs, structures, and compiler characteristics.
# Checks for library functions.
AC_CONFIG_FILES([
Makefile
examples/Makefile
])
AC_OUTPUT

8
examples/Makefile.am Normal file
View File

@ -0,0 +1,8 @@
AM_CPPFLAGS = \
-I$(top_srcdir)
noinst_PROGRAMS = \
hello
hello_SOURCES = \
SayHello.cpp

50
examples/SayHello.cpp Normal file
View File

@ -0,0 +1,50 @@
/*===========================================================================
//
// File: SayHello.cpp
//
// Created: 2012-02-01 16:14:51+0100
//
// Authors: Knut-Andreas Lie <Knut-Andreas.Lie@sintef.no>
// Jostein R. Natvig <Jostein.R.Natvig@sintef.no>
// Halvor M. Nilsen <HalvorMoll.Nilsen@sintef.no>
// Atgeirr F. Rasmussen <atgeirr@sintef.no>
// Xavier Raynaud <Xavier.Raynaud@sintef.no>
// Bård Skaflestad <Bard.Skaflestad@sintef.no>
//
//==========================================================================*/
/*
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 <http://www.gnu.org/licenses/>.
*/
#include <opm/polymer/HelloPolymer.hpp>
#include <iostream>
int main()
{
Opm::Polymer::Hello world;
::std::cout << world << '\n';
Opm::Polymer::Hello hello("World");
::std::cerr << hello << '\n';
return 0;
}

0
m4/.ignore Normal file
View File

View File

@ -0,0 +1,63 @@
/*===========================================================================
//
// File: HelloPolymer.hpp
//
// Created: 2012-02-01 16:15:27+0100
//
// Authors: Knut-Andreas Lie <Knut-Andreas.Lie@sintef.no>
// Jostein R. Natvig <Jostein.R.Natvig@sintef.no>
// Halvor M. Nilsen <HalvorMoll.Nilsen@sintef.no>
// Atgeirr F. Rasmussen <atgeirr@sintef.no>
// Xavier Raynaud <Xavier.Raynaud@sintef.no>
// Bård Skaflestad <Bard.Skaflestad@sintef.no>
//
//==========================================================================*/
/*
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 <http://www.gnu.org/licenses/>.
*/
#ifndef OPM_HELLOPOLYMER_HPP_HEADER
#define OPM_HELLOPOLYMER_HPP_HEADER
#include <string>
namespace Opm {
namespace Polymer {
class Hello {
public:
Hello() : designee_("world") {}
Hello(const std::string& dsgn) : designee_(dsgn) {}
template <class Ostream>
friend Ostream& operator<< (Ostream& os, const Hello& h);
private:
::std::string designee_;
};
template <class Ostream>
Ostream &
operator<<(Ostream& os, const Hello& h) {
os << "Polymer::Hello, " << h.designee_;
return os;
}
} // namespace Polymer
} // namespace Opm
#endif /* OPM_HELLOPOLYMER_HPP_HEADER */