Coin Logo Coin3D is Free Software,
published under the BSD 3-clause license.
https://bitbucket.org/Coin3D/
http://www.kongsberg.com/kogt/
SoSFEngine.h
1 // Important note: this sourcefile was in full generated by the
2 // Coin/scripts/templant script from the code in SFNodeAndEngine.tpl.
3 
4 //$ BEGIN TEMPLATE SFNodeAndEngine(ENGINE, Engine)
5 
6 /**************************************************************************\
7  * Copyright (c) Kongsberg Oil & Gas Technologies AS
8  * All rights reserved.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions are
12  * met:
13  *
14  * Redistributions of source code must retain the above copyright notice,
15  * this list of conditions and the following disclaimer.
16  *
17  * Redistributions in binary form must reproduce the above copyright
18  * notice, this list of conditions and the following disclaimer in the
19  * documentation and/or other materials provided with the distribution.
20  *
21  * Neither the name of the copyright holder nor the names of its
22  * contributors may be used to endorse or promote products derived from
23  * this software without specific prior written permission.
24  *
25  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29  * HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 \**************************************************************************/
37 
38 #ifndef COIN_SOSFENGINE_H
39 #define COIN_SOSFENGINE_H
40 
41 #include <Inventor/fields/SoSField.h>
42 #include <Inventor/fields/SoSubField.h>
43 
44 class SoEngine;
45 
46 
47 class COIN_DLL_API SoSFEngine : public SoSField {
48  typedef SoSField inherited;
49 
50  SO_SFIELD_HEADER(SoSFEngine, SoEngine *, SoEngine *);
51 
52 public:
53  static void initClass(void);
54 
55  virtual void fixCopy(SbBool copyconnections);
56  virtual SbBool referencesCopy(void) const;
57 
58 private:
59  virtual void countWriteRefs(SoOutput * out) const;
60 
61  // For accessing the readValue() and writeValue() methods.
62  friend class SoMFEngine;
63 };
64 
65 #endif // !COIN_SOSFENGINE_H
66 //$ END TEMPLATE SFNodeAndEngine
The SoOutput class is an abstraction of an output stream.
Definition: SoOutput.h:51
SoEngine is the base class for Coin engines.
Definition: SoEngine.h:43
The SoSField class is the base class for fields which contains only a single value.
Definition: SoSField.h:38
The SoSFEngine class is a container for a single engine.
Definition: SoSFEngine.h:47
virtual void fixCopy(SbBool copyconnections)
Definition: SoField.cpp:1744
The SoMFEngine class is a container for engines.
Definition: SoMFEngine.h:41
virtual SbBool referencesCopy(void) const
Definition: SoField.cpp:1759
virtual void countWriteRefs(SoOutput *out) const
Definition: SoField.cpp:2096