dune-pdelab  2.4.1
backend/common/tags.hh
Go to the documentation of this file.
1 // -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
2 // vi: set et ts=4 sw=2 sts=2:
3 #ifndef DUNE_PDELAB_BACKEND_TAGS_HH
4 #define DUNE_PDELAB_BACKEND_TAGS_HH
5 
6 #include <dune/common/deprecated.hh>
7 
13 namespace Dune {
14 
15  namespace PDELab{
16 
17  namespace Backend {
18 
23 
26  {};
27 
30  {};
31 
33 
34  }
35 
36  namespace tags {
37 
38  using unattached_container DUNE_DEPRECATED_MSG("unattached_containers was moved to the namespace Dune::PDELab::Backend for PDELab 2.4. Please update your code accordingly.") = Backend::unattached_container;
39  using attached_container DUNE_DEPRECATED_MSG("unattached_containers was moved to the namespace Dune::PDELab::Backend for PDELab 2.4. Please update your code accordingly.") = Backend::attached_container;
40 
41  }
42 
43  } // namespace PDELab
44 
45 } // namespace Dune
46 
47 #endif // DUNE_PDELAB_BACKEND_TAGS_HH
Tag for requesting a vector or matrix container with a pre-attached underlying object.
Definition: backend/common/tags.hh:29
Definition: adaptivity.hh:27
Backend::unattached_container unattached_container
Definition: backend/common/tags.hh:38
Backend::attached_container attached_container
Definition: backend/common/tags.hh:39
Tag for requesting a vector or matrix container without a pre-attached underlying object...
Definition: backend/common/tags.hh:25