]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/ole/automtn.h
allow passing temporary functors to Bind() too (closes #10653)
[wxWidgets.git] / include / wx / msw / ole / automtn.h
index 87f2ff1538f99fdc27784e358fe48b5f4e9c66da..41db5772842df41743e63b8f41da0d9a78082432 100644 (file)
@@ -38,8 +38,9 @@ public:
     virtual ~wxAutomationObject();
 
     // Set/get dispatch pointer
     virtual ~wxAutomationObject();
 
     // Set/get dispatch pointer
-    inline void SetDispatchPtr(WXIDISPATCH* dispatchPtr) { m_dispatchPtr = dispatchPtr; }
-    inline WXIDISPATCH* GetDispatchPtr() const { return m_dispatchPtr; }
+    void SetDispatchPtr(WXIDISPATCH* dispatchPtr) { m_dispatchPtr = dispatchPtr; }
+    WXIDISPATCH* GetDispatchPtr() const { return m_dispatchPtr; }
+    bool IsOk() const { return m_dispatchPtr != NULL; }
 
     // Get a dispatch pointer from the current object associated
     // with a class id, such as "Excel.Application"
 
     // Get a dispatch pointer from the current object associated
     // with a class id, such as "Excel.Application"
@@ -93,7 +94,7 @@ public:
 public:
     WXIDISPATCH*  m_dispatchPtr;
 
 public:
     WXIDISPATCH*  m_dispatchPtr;
 
-    DECLARE_NO_COPY_CLASS(wxAutomationObject)
+    wxDECLARE_NO_COPY_CLASS(wxAutomationObject);
 };
 
 #endif // wxUSE_OLE_AUTOMATION
 };
 
 #endif // wxUSE_OLE_AUTOMATION