Arcane  v3.14.10.0
Documentation développeur
Chargement...
Recherche...
Aucune correspondance
AbstractItemOperationByBasicType.cc
1// -*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
2//-----------------------------------------------------------------------------
3// Copyright 2000-2022 CEA (www.cea.fr) IFPEN (www.ifpenergiesnouvelles.com)
4// See the top-level COPYRIGHT file for details.
5// SPDX-License-Identifier: Apache-2.0
6//-----------------------------------------------------------------------------
7/*---------------------------------------------------------------------------*/
8/* AbstractItemOperationByBasicType.cc (C) 2000-2016 */
9/* */
10/* Opérateur abstrait sur des entités rangées par type. */
11/*---------------------------------------------------------------------------*/
12/*---------------------------------------------------------------------------*/
13
14#include "arcane/utils/ArcanePrecomp.h"
15
16#include "arcane/utils/TraceInfo.h"
17#include "arcane/utils/NotImplementedException.h"
18#include "arcane/Item.h"
19#include "arcane/AbstractItemOperationByBasicType.h"
20
21/*---------------------------------------------------------------------------*/
22/*---------------------------------------------------------------------------*/
23
24ARCANE_BEGIN_NAMESPACE
25
26/*---------------------------------------------------------------------------*/
27/*---------------------------------------------------------------------------*/
28
29void AbstractItemOperationByBasicType::
30applyVertex(ItemVectorView items)
31{
32 ARCANE_UNUSED(items);
33 throw NotImplementedException(A_FUNCINFO);
34}
35void AbstractItemOperationByBasicType::
36applyLine2(ItemVectorView items)
37{
38 ARCANE_UNUSED(items);
39 throw NotImplementedException(A_FUNCINFO);
40}
41void AbstractItemOperationByBasicType::
42applyTriangle3(ItemVectorView items)
43{
44 ARCANE_UNUSED(items);
45 throw NotImplementedException(A_FUNCINFO);
46}
47void AbstractItemOperationByBasicType::
48applyQuad4(ItemVectorView items)
49{
50 ARCANE_UNUSED(items);
51 throw NotImplementedException(A_FUNCINFO);
52}
53void AbstractItemOperationByBasicType::
54applyPentagon5(ItemVectorView items)
55{
56 ARCANE_UNUSED(items);
57 throw NotImplementedException(A_FUNCINFO);
58}
59void AbstractItemOperationByBasicType::
60applyHexagon6(ItemVectorView items)
61{
62 ARCANE_UNUSED(items);
63 throw NotImplementedException(A_FUNCINFO);
64}
65void AbstractItemOperationByBasicType::
66applyTetraedron4(ItemVectorView items)
67{
68 ARCANE_UNUSED(items);
69 throw NotImplementedException(A_FUNCINFO);
70}
71void AbstractItemOperationByBasicType::
72applyPyramid5(ItemVectorView items)
73{
74 ARCANE_UNUSED(items);
75 throw NotImplementedException(A_FUNCINFO);
76}
77void AbstractItemOperationByBasicType::
78applyPentaedron6(ItemVectorView items)
79{
80 ARCANE_UNUSED(items);
81 throw NotImplementedException(A_FUNCINFO);
82}
83void AbstractItemOperationByBasicType::
84applyHexaedron8(ItemVectorView items)
85{
86 ARCANE_UNUSED(items);
87 throw NotImplementedException(A_FUNCINFO);
88}
89void AbstractItemOperationByBasicType::
90applyHeptaedron10(ItemVectorView items)
91{
92 ARCANE_UNUSED(items);
93 throw NotImplementedException(A_FUNCINFO);
94}
95void AbstractItemOperationByBasicType::
96applyOctaedron12(ItemVectorView items)
97{
98 ARCANE_UNUSED(items);
99 throw NotImplementedException(A_FUNCINFO);
100}
101void AbstractItemOperationByBasicType::
102applyHemiHexa7(ItemVectorView group)
103{
104 ARCANE_UNUSED(group);
105 throw NotImplementedException(A_FUNCINFO);
106}
107void AbstractItemOperationByBasicType::
108applyHemiHexa6(ItemVectorView group)
109{
110 ARCANE_UNUSED(group);
111 throw NotImplementedException(A_FUNCINFO);
112}
113void AbstractItemOperationByBasicType::
114applyHemiHexa5(ItemVectorView group)
115{
116 ARCANE_UNUSED(group);
117 throw NotImplementedException(A_FUNCINFO);
118}
119void AbstractItemOperationByBasicType::
120applyAntiWedgeLeft6(ItemVectorView group)
121{
122 ARCANE_UNUSED(group);
123 throw NotImplementedException(A_FUNCINFO);
124}
125void AbstractItemOperationByBasicType::
126applyAntiWedgeRight6(ItemVectorView group)
127{
128 ARCANE_UNUSED(group);
129 throw NotImplementedException(A_FUNCINFO);
130}
131void AbstractItemOperationByBasicType::
132applyDiTetra5(ItemVectorView group)
133{
134 ARCANE_UNUSED(group);
135 throw NotImplementedException(A_FUNCINFO);
136}
137void AbstractItemOperationByBasicType::
138applyDualNode(ItemVectorView group)
139{
140 ARCANE_UNUSED(group);
141 throw NotImplementedException(A_FUNCINFO);
142}
143void AbstractItemOperationByBasicType::
144applyDualEdge(ItemVectorView group)
145{
146 ARCANE_UNUSED(group);
147 throw NotImplementedException(A_FUNCINFO);
148}
149void AbstractItemOperationByBasicType::
150applyDualFace(ItemVectorView group)
151{
152 ARCANE_UNUSED(group);
153 throw NotImplementedException(A_FUNCINFO);
154}
155void AbstractItemOperationByBasicType::
156applyDualCell(ItemVectorView group)
157{
158 ARCANE_UNUSED(group);
159 throw NotImplementedException(A_FUNCINFO);
160}
161void AbstractItemOperationByBasicType::
162applyLink(ItemVectorView group)
163{
164 ARCANE_UNUSED(group);
165 throw NotImplementedException(A_FUNCINFO);
166}
167
168/*---------------------------------------------------------------------------*/
169/*---------------------------------------------------------------------------*/
170
171ARCANE_END_NAMESPACE
172
173/*---------------------------------------------------------------------------*/
174/*---------------------------------------------------------------------------*/
175