summaryrefslogtreecommitdiffstats
path: root/ext/win32ole/lib
diff options
context:
space:
mode:
authorsuke <suke@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-06-01 12:34:30 +0000
committersuke <suke@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-06-01 12:34:30 +0000
commit8b8dc0d3f950b6c017c5707495c6d73dcc640e55 (patch)
tree2e9157b5d45f0aaba69eb211e6f9405671383419 /ext/win32ole/lib
parent52ed55eb4a961ebe69eed44e43642ef3519b6004 (diff)
downloadruby-8b8dc0d3f950b6c017c5707495c6d73dcc640e55.tar.gz
ruby-8b8dc0d3f950b6c017c5707495c6d73dcc640e55.tar.xz
ruby-8b8dc0d3f950b6c017c5707495c6d73dcc640e55.zip
merge win32ole from rough
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@2508 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/win32ole/lib')
-rw-r--r--ext/win32ole/lib/win32ole/property.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/ext/win32ole/lib/win32ole/property.rb b/ext/win32ole/lib/win32ole/property.rb
new file mode 100644
index 000000000..a68bad9af
--- /dev/null
+++ b/ext/win32ole/lib/win32ole/property.rb
@@ -0,0 +1,16 @@
+# 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