summaryrefslogtreecommitdiff
path: root/ruby_1_8_6/ext/win32ole/lib/win32ole/property.rb
diff options
context:
space:
mode:
Diffstat (limited to 'ruby_1_8_6/ext/win32ole/lib/win32ole/property.rb')
-rw-r--r--ruby_1_8_6/ext/win32ole/lib/win32ole/property.rb16
1 files changed, 0 insertions, 16 deletions
diff --git a/ruby_1_8_6/ext/win32ole/lib/win32ole/property.rb b/ruby_1_8_6/ext/win32ole/lib/win32ole/property.rb
deleted file mode 100644
index a68bad9af8..0000000000
--- a/ruby_1_8_6/ext/win32ole/lib/win32ole/property.rb
+++ /dev/null
@@ -1,16 +0,0 @@
-# OLEProperty
-# helper class of Property with arguments.
-class OLEProperty
- def initialize(obj, dispid, gettypes, settypes)
- @obj = obj
- @dispid = dispid
- @gettypes = gettypes
- @settypes = settypes
- end
- def [](*args)
- @obj._getproperty(@dispid, args, @gettypes)
- end
- def []=(*args)
- @obj._setproperty(@dispid, args, @settypes)
- end
-end