swh:1:snp:f521c49ab17ef7db6ec70b2430e1ed203f50383f
Raw File
Tip revision: 590999873b9c5162681332cc384cd16f6a1ad818 authored by Lars Bilke on 28 September 2021, 13:53:02 UTC
Formatting .gitlab-ci.yml.
Tip revision: 5909998
LocalAssemblerInterface.h
/**
 * \file
 * \copyright
 * Copyright (c) 2012-2021, OpenGeoSys Community (http://www.opengeosys.org)
 *            Distributed under a Modified BSD License.
 *              See accompanying file LICENSE.txt or
 *              http://www.opengeosys.org/project/license
 *
 */

#pragma once

#include "NumLib/Extrapolation/ExtrapolatableElement.h"
#include "ProcessLib/LocalAssemblerInterface.h"

namespace ProcessLib::StokesFlow
{
class StokesFlowLocalAssemblerInterface
    : public ProcessLib::LocalAssemblerInterface,
      public NumLib::ExtrapolatableElement
{
public:
    StokesFlowLocalAssemblerInterface() = default;
};
}  // namespace ProcessLib::StokesFlow
back to top