0026912: CLang 3.6.2 compiler warning [-Winconsistent-missing-override]
[occt.git] / src / StepData / StepData_FieldList.cxx
1 // Copyright (c) 1999-2014 OPEN CASCADE SAS
2 //
3 // This file is part of Open CASCADE Technology software library.
4 //
5 // This library is free software; you can redistribute it and/or modify it under
6 // the terms of the GNU Lesser General Public License version 2.1 as published
7 // by the Free Software Foundation, with special exception defined in the file
8 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
9 // distribution for complete text of the license and disclaimer of any warranty.
10 //
11 // Alternatively, this file may be used under the terms of Open CASCADE
12 // commercial license or contractual agreement.
13
14
15 #include <Interface_EntityIterator.hxx>
16 #include <Standard_OutOfRange.hxx>
17 #include <StepData_Field.hxx>
18 #include <StepData_FieldList.hxx>
19
20 static StepData_Field nulfild;
21
22 StepData_FieldList::StepData_FieldList  ()    {  }
23
24 Standard_Integer  StepData_FieldList::NbFields () const
25 {  return 0;  }
26
27 const StepData_Field&  StepData_FieldList::Field (const Standard_Integer) const
28 {
29   Standard_OutOfRange::Raise("StepData_FieldList : Field");
30   return nulfild;
31 }
32
33 StepData_Field&  StepData_FieldList::CField (const Standard_Integer)
34 {
35   Standard_OutOfRange::Raise("StepData_FieldList : CField");
36   return nulfild;
37 }
38
39
40 void  StepData_FieldList::FillShared (Interface_EntityIterator& iter) const
41 {
42   Standard_Integer i, nb = NbFields();
43   for (i = 1; i <= nb; i ++) {
44     const StepData_Field& fi = Field(i);
45     if (fi.Kind() != 7) continue;  // KindEntity
46     Standard_Integer i1,i2, nb1 = 1, nb2 = 1, ari = fi.Arity();
47     if (ari == 1)   nb1 = fi.Length();
48     if (ari == 2) { nb1 = fi.Length(1); nb2 = fi.Length(2); }
49     for (i1 = 1; i1 <= nb1; i1 ++)
50       for (i2 = 1; i2 <= nb2; i2 ++)
51         iter.AddItem (fi.Entity(i1,i2));
52   }
53 }