summaryrefslogtreecommitdiff
path: root/TAO/CIAO/examples/handcrafted/Display/HUDisplayE.idl
blob: cc3b97a73e4d2e23c86f7ed75e1975ce636db2af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// $Id$

/**
 * @file HUDisplayE.idl
 *
 * Executor definitions of events, and common interfaces used in
 * HUDisplay module.  This file should eventually be generated by the
 * CCIDL compiler automatically when it becomes available.
 *
 * @author Nanbor Wang <nanbor@cs.wustl.edu>
 */

#ifndef HUDISPLAYE_IDL
#define HUDISPLAYE_IDL


#include "HUDisplay.idl"

module HUDisplay
{
  /**
   * Executor interface mapping for supported interfaces.
   */
  local interface CCM_opmode : opmode
  {
  };

  /**
   * Executor interface for tick event comsumers.  This interface is
   * only needed if a component implementation uses the
   * ExecutorLocator strategy.
   */
  local interface CCM_tickConsumer
    {
      void push (in tick evt);
    };

  /**
   * Executor interface for position facet interface that allows
   * querying of a coordination.
   */
  local interface CCM_position : position
  {
  };
};

#endif /* HUDISPLAYE_IDL */