Class: TurboRex::MSRPC::MIDL::DataType::Pointer
- Inherits:
-
TurboRex::MSRPC::MIDL::DataType
- Object
- TurboRex::MSRPC::MIDL::DataType
- TurboRex::MSRPC::MIDL::DataType::Pointer
- Defined in:
- lib/turborex/msrpc/midl.rb
Instance Attribute Summary collapse
-
#level ⇒ Object
Returns the value of attribute level.
-
#pointee ⇒ Object
readonly
Returns the value of attribute pointee.
-
#type ⇒ Object
readonly
Returns the value of attribute type.
Attributes inherited from TurboRex::MSRPC::MIDL::DataType
Instance Method Summary collapse
-
#initialize(pointee, type, level = 1) ⇒ Pointer
constructor
A new instance of Pointer.
Constructor Details
#initialize(pointee, type, level = 1) ⇒ Pointer
Returns a new instance of Pointer.
193 194 195 196 197 198 199 |
# File 'lib/turborex/msrpc/midl.rb', line 193 def initialize(pointee, type, level=1) @pointee = pointee @type = type # ref, full, unique @level = level get_level end |
Instance Attribute Details
#level ⇒ Object
Returns the value of attribute level.
191 192 193 |
# File 'lib/turborex/msrpc/midl.rb', line 191 def level @level end |
#pointee ⇒ Object (readonly)
Returns the value of attribute pointee.
189 190 191 |
# File 'lib/turborex/msrpc/midl.rb', line 189 def pointee @pointee end |
#type ⇒ Object (readonly)
Returns the value of attribute type.
190 191 192 |
# File 'lib/turborex/msrpc/midl.rb', line 190 def type @type end |