0031668: Visualization - WebGL sample doesn't work on Emscripten 1.39
[occt.git] / src / Vrml / Vrml_WWWAnchor.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 <TCollection_AsciiString.hxx>
16 #include <Vrml_WWWAnchor.hxx>
17
18 Vrml_WWWAnchor::Vrml_WWWAnchor(const TCollection_AsciiString& aName,
19                                const TCollection_AsciiString& aDescription,
20                                const Vrml_WWWAnchorMap aMap)
21 {
22  myName = aName;
23  myDescription = aDescription;
24  myMap = aMap;
25 }
26
27  void Vrml_WWWAnchor::SetName(const TCollection_AsciiString& aName) 
28 {
29  myName = aName;
30 }
31
32  TCollection_AsciiString Vrml_WWWAnchor::Name() const
33 {
34   return myName;
35 }
36
37  void Vrml_WWWAnchor::SetDescription(const TCollection_AsciiString& aDescription) 
38 {
39  myDescription = aDescription;
40 }
41
42  TCollection_AsciiString Vrml_WWWAnchor::Description() const
43 {
44   return myDescription;
45 }
46
47  void Vrml_WWWAnchor::SetMap(const Vrml_WWWAnchorMap aMap) 
48 {
49  myMap = aMap;
50 }
51
52  Vrml_WWWAnchorMap Vrml_WWWAnchor::Map() const
53 {
54   return myMap;
55 }
56
57  Standard_OStream& Vrml_WWWAnchor::Print(Standard_OStream& anOStream) const
58 {
59  anOStream  << "WWWAnchor {\n";
60
61  if ( !(myName.IsEqual( "" ) ) )
62    {
63     anOStream  << "    name\t";
64     anOStream << '"' << myName << '"' << "\n";
65    }
66
67  if ( !(myDescription.IsEqual("") ) )
68    {
69     anOStream  << "    description\t";
70     anOStream << '"' << myDescription << '"' << "\n";
71    }
72
73  switch ( myMap )
74     {
75      case Vrml_MAP_NONE: break; // anOStream  << "    map\tNONE ";
76      case Vrml_POINT: anOStream  << "    map\t\tPOINT\n"; break;
77     }
78
79  anOStream  << "}\n";
80  return anOStream;
81
82 }