0024428: Implementation of LGPL license
[occt.git] / src / Aspect / Aspect_IndexPixel.cxx
1 // Copyright (c) 1995-1999 Matra Datavision
2 // Copyright (c) 1999-2014 OPEN CASCADE SAS
3 //
4 // This file is part of Open CASCADE Technology software library.
5 //
6 // This library is free software; you can redistribute it and / or modify it
7 // under the terms of the GNU Lesser General Public version 2.1 as published
8 // by the Free Software Foundation, with special exception defined in the file
9 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
10 // distribution for complete text of the license and disclaimer of any warranty.
11 //
12 // Alternatively, this file may be used under the terms of Open CASCADE
13 // commercial license or contractual agreement.
14
15 #include <stdio.h>
16
17 #include <Standard_Stream.hxx>
18 #include <Aspect_IndexPixel.ixx>
19
20 Aspect_IndexPixel::Aspect_IndexPixel () {
21
22   myIndex = 0;
23
24 }
25
26 Aspect_IndexPixel::Aspect_IndexPixel (const Standard_Integer anIndex) {
27
28   myIndex = anIndex;
29
30 }
31
32 Standard_Integer Aspect_IndexPixel::Value() const { 
33
34 return myIndex;
35
36 }
37
38
39 void Aspect_IndexPixel::SetValue(const Standard_Integer anIndex) {
40
41   myIndex = anIndex;
42
43 }
44
45 void Aspect_IndexPixel::Print(Standard_OStream& s) const
46
47 {
48         s << dec << setw(4) << myIndex;
49 }
50
51 // ------------------------------------------------------------------
52 // Hascode : Computes a hascoding value for a given Aspect_IndexPixel
53 // ------------------------------------------------------------------
54 Standard_Integer Aspect_IndexPixel::HashCode(const Standard_Integer Upper) const
55 {
56    return ( myIndex % Upper ) + 1 ;
57 }
58
59
60 Standard_Boolean Aspect_IndexPixel::IsEqual(const Aspect_IndexPixel& Other) const
61 {
62   return (myIndex == Other.myIndex);
63 }
64
65 Standard_Boolean Aspect_IndexPixel::IsNotEqual(const Aspect_IndexPixel& Other) const
66 {
67   return !IsEqual(Other);
68 }