namespace distributed
{
/**
- * The template arguments of the original
- * dealii::parallel::distributed::SolutionTransfer class will change in a
- * future release. If for some reason, you need a code that is compatible
- * with deal.II 9.3 and the subsequent release, use this alias instead.
+ * @deprecated Use dealii::parallel::distributed::SolutionTransfer
+ * without the DoFHandlerType template instead.
*/
template <int dim,
typename VectorType,
typename DoFHandlerType = DoFHandler<dim>>
- using SolutionTransfer = dealii::parallel::distributed::
- SolutionTransfer<dim, VectorType, DoFHandlerType>;
+ using SolutionTransfer DEAL_II_DEPRECATED = dealii::parallel::
+ distributed::SolutionTransfer<dim, VectorType, DoFHandlerType>;
} // namespace distributed
} // namespace parallel
} // namespace Legacy
namespace Legacy
{
/**
- * The template arguments of the original dealii::DataOut class will
- * change in a future release. If for some reason, you need a code that is
- * compatible with deal.II 9.3 and the subsequent release, use this alias
+ * @deprecated Use dealii::DataOut without the DoFHandlerType template
* instead.
*/
template <int dim, typename DoFHandlerType = DoFHandler<dim>>
- using DataOut = dealii::DataOut<dim, DoFHandlerType>;
+ using DataOut DEAL_II_DEPRECATED = dealii::DataOut<dim, DoFHandlerType>;
} // namespace Legacy
namespace Legacy
{
/**
- * The template arguments of the original dealii::DataOut_DoFData class will
- * change in a future release. If for some reason, you need a code that is
- * compatible with deal.II 9.3 and the subsequent release, use this alias
- * instead.
+ * @deprecated Use dealii::DataOut_DoFData without the DoFHandlerType
+ * template instead.
*/
template <typename DoFHandlerType,
int patch_dim,
int patch_space_dim = patch_dim>
- using DataOut_DoFData =
+ using DataOut_DoFData DEAL_II_DEPRECATED =
dealii::DataOut_DoFData<DoFHandlerType, patch_dim, patch_space_dim>;
} // namespace Legacy
namespace Legacy
{
/**
- * The template arguments of the original dealii::DataOutFaces class will
- * change in a future release. If for some reason, you need a code that is
- * compatible with deal.II 9.3 and the subsequent release, use this alias
+ * @deprecated Use dealii::DataOutFaces without the DoFHandlerType template
* instead.
*/
template <int dim, typename DoFHandlerType = DoFHandler<dim>>
- using DataOutFaces = dealii::DataOutFaces<dim, DoFHandlerType>;
+ using DataOutFaces DEAL_II_DEPRECATED =
+ dealii::DataOutFaces<dim, DoFHandlerType>;
} // namespace Legacy
namespace Legacy
{
/**
- * The template arguments of the original dealii::DataOutRotation class will
- * change in a future release. If for some reason, you need a code that is
- * compatible with deal.II 9.3 and the subsequent release, use this alias
- * instead.
+ * @deprecated Use dealii::DataOutRotation without the DoFHandlerType
+ * template instead.
*/
template <int dim, typename DoFHandlerType = DoFHandler<dim>>
- using DataOutRotation = dealii::DataOutRotation<dim, DoFHandlerType>;
+ using DataOutRotation DEAL_II_DEPRECATED =
+ dealii::DataOutRotation<dim, DoFHandlerType>;
} // namespace Legacy
namespace Functions
{
/**
- * The template arguments of the original dealii::Functions::FEFieldFunction
- * class will change in a future release. If for some reason, you need a
- * code that is compatible with deal.II 9.3 and the subsequent release, use
- * this alias instead.
+ * @deprecated Use dealii::Functions::FEFieldFunction without the
+ * DoFHandlerType template instead.
*/
template <int dim,
typename DoFHandlerType = DoFHandler<dim>,
typename VectorType = Vector<double>>
- using FEFieldFunction =
+ using FEFieldFunction DEAL_II_DEPRECATED =
dealii::Functions::FEFieldFunction<dim, DoFHandlerType, VectorType>;
} // namespace Functions
} // namespace Legacy
namespace Legacy
{
/**
- * The template arguments of the original dealii::SolutionTransfer class will
- * change in a future release. If for some reason, you need a code that is
- * compatible with deal.II 9.3 and the subsequent release, use this alias
- * instead.
+ * @deprecated Use dealii::SolutionTransfer without the DoFHandlerType
+ * template instead.
*/
template <int dim,
typename VectorType = Vector<double>,
typename DoFHandlerType = DoFHandler<dim>>
- using SolutionTransfer =
+ using SolutionTransfer DEAL_II_DEPRECATED =
dealii::SolutionTransfer<dim, VectorType, DoFHandlerType>;
} // namespace Legacy