1SoSFUShort(3IV)() SoSFUShort(3IV)()
2
3
4
6 SoSFUShort — field containing an unsigned short integer
7
9 SoField > SoSField > SoSFUShort
10
12 #include <Inventor/fields/SoSFUShort.h>
13
14 Methods from class SoSFUShort:
15
16 static SoType getClassTypeId()
17 virtual void getTypeId() const
18 short unsigned short getValue() const
19 short unsigned short operator =(short unsigned short newValue)
20 void setValue(short unsigned short newValue)
21 int operator ==(const SoSFUShort &f) const
22 int operator !=(const SoSFUShort &f) const
23
24 Methods from class SoField:
25
26 void setIgnored(SbBool ignore)
27 SbBool isIgnored() const
28 SbBool isDefault() const
29 virtual SbBool isOfType(SoType type) const
30 SbBool set(const char *valueString)
31 void get(SbString &valueString)
32 void touch()
33 SbBool connectFrom(SoField *fromField)
34 SbBool connectFrom(SoEngineOutput *fromEngine)
35 void disconnect()
36 SbBool isConnected() const
37 SbBool isConnectedFromField() const
38 SbBool getConnectedField(SoField *&writingField) const
39 SbBool isConnectedFromEngine() const
40 SbBool getConnectedEngine(SoEngineOutput *&engineOutput)
41 const
42 void enableConnection(SbBool flag)
43 SbBool isConnectionEnabled() const
44 int getForwardConnections(SoFieldList &list) const
45 SoFieldContainer * getContainer() const
46
47
49 A single-value field containing a short (16-bit) integer.
50
51 SoSFUShorts are written to file in decimal, hexadecimal (beginning with
52 '0x') or octal (beginning with '0') values.
53
55 static SoType getClassTypeId()
56 virtual void getTypeId() const
57 Returns the type for this class or a particular object of this
58 class.
59
60 short unsigned short getValue() const
61 Returns this field's value.
62
63 short unsigned short operator =(short unsigned short newValue)
64 void setValue(short unsigned short newValue)
65 Sets this field to newValue.
66
67 int operator ==(const SoSFUShort &f) const
68 int operator !=(const SoSFUShort &f) const
69 Returns TRUE if f is of the same type and has the same value as this
70 field.
71
72
74 SoField, SoSField, SoMFUShort
75
76
77
78
79 SoSFUShort(3IV)()