summaryrefslogtreecommitdiff
path: root/TAO/CIAO/examples/handcrafted/Display/HUDisplayE.idl
blob: db5623f8e0fe42e17ab21d37647c5d62335af98f (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
// $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>
 */

#include "HUDisplay.idl"

module HUDisplay
{
  /**
   * 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
  {
    long pos ();
  };
};