zoukankan      html  css  js  c++  java
  • Automation Clients

    Automation Clients

      Automation makes it possible for your application to manipulate objects implemented in another application, or to expose objects so they can be manipulated. An automation client is an application that can manipulate exposed objects belonging to another application. The application that exposes the objects is called the Automation server. The client manipulates the server application’s objects by accessing those objects’ properties and functions.

      There are two types of Automation clients:

    • Clients that dynamically (at run time) acquire information about the properties and operations of the server.

    • Clients that possess static information (provided at compile time) that specifies the properties and operations of the server.

      Clients of the first kind acquire information about the server’s methods and properties by querying the OLE system’s IDispatch mechanism. Although it is adequate to use for dynamic clients, IDispatch is difficult to use for static clients, where the objects being driven must be known at compile time. For static bound clients, the Microsoft Foundation classes provide the class along with ClassWizard support.

      Static bound clients use a proxy class that is statically linked with the client application. This class provides a type-safe C++ encapsulation of the server application’s properties and operations.

      The class COleDispatchDriver provides the principal support for the client side of Automation. Using ClassWizard, you create a class derived fromCOleDispatchDriver.

      You then specify the type-library file describing the properties and functions of the server application’s object. ClassWizard reads this file and creates theCOleDispatchDriver-derived class, with member functions that your application can call to access the server application’s objects in C++ in a type-safe manner. Additional functionality inherited from COleDispatchDriver simplifies the process of calling the proper Automation server.

  • 相关阅读:
    Codeforces 1131 C. Birthday-暴力 (Codeforces Round #541 (Div. 2))
    Codeforces 1131 B. Draw!-暴力 (Codeforces Round #541 (Div. 2))
    DP之背包经典三例
    博弈规律综概
    腾讯面试题:杯子质量(最优查找)
    洛谷P1308——单词统计
    AtCoder Regular Contest 069 D
    Codeforces 782C. Andryusha and Colored Balloons 搜索
    Codeforces 799D. String Game 二分
    Codeforces 767B. The Queue 模拟题
  • 原文地址:https://www.cnblogs.com/tekkaman/p/2585346.html
Copyright © 2011-2022 走看看