#804 Updated ERT based on 6287acdb0d039ce13eb9956b67035280a3de9539

This commit is contained in:
Magne Sjaastad
2016-10-13 13:31:31 +02:00
parent 7269e6e165
commit 3b4f1620a5
4288 changed files with 19102 additions and 16971 deletions

View File

@@ -1,36 +0,0 @@
/*
Copyright 2015 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 DECKTIMESTEP_HPP
#define DECKTIMESTEP_HPP
#include <opm/parser/eclipse/Deck/Deck.hpp>
namespace Opm {
class DeckTimeStep : public Deck {
public:
DeckTimeStep();
};
typedef std::shared_ptr<DeckTimeStep> DeckTimeStepPtr;
typedef std::shared_ptr<const DeckTimeStep> DeckTimeStepConstPtr;
}
#endif