summaryrefslogtreecommitdiff
path: root/TAO/CIAO/examples/handcrafted/BasicSP/BMDisplay/BMDisplayE.idl
blob: c8b8345564d974aefd93b093f5e9d4b9e6af1236 (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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
// $Id$

// ===========================================================
//
// @file BMDisplayE.idl
//
// Handlecrafted "generated" code. :)
//
// @author Balachandran Natarajan <bala@dre.vanderbilt.edu>
//
// ===========================================================

#ifndef CIAO_BMDISPLAYE_IDL
#define CIAO_BMDISPLAYE_IDL

#include "CCM_Container.idl"    // Found in $(CIAO_ROOT)/ciao
                                // For various definitions of container
                                // internal/callback interfaces
#include "BMDisplay.idl"       // Original component IDL definition
#include "../BasicSP.idl"

module BasicSP
{
  // Component Main Executor Interface.  We currently do not
  // support Executor-based implementation.

  local interface CCM_BMDisplay_Executor
  : Components::EnterpriseComponent
  {
  };

  // Monolithic component executor.
  // For implementing monolithic component call back interface.

  local interface CCM_BMDisplay
    : Components::EnterpriseComponent
  {
    void push_data_ready (in DataAvailable ev);
  };

  /**
   * Component Context Interface
   *
   * Notice that we are taking a shortcut here to inherit the
   * component-specific context from SessionContext directly instead
   * of CCMContext.
   */
  local interface CCM_BMDisplay_Context
    : Components::SessionContext
  {
    ReadData get_connection_comp_data ();
  };


  local interface CCM_BMDisplayHomeExplicit
    : Components::HomeExecutorBase
  {
  };

  local interface CCM_BMDisplayHomeImplicit
  {
    ::Components::EnterpriseComponent create ()
      raises (::Components::CCMException);
  };

  local interface CCM_BMDisplayHome
    : CCM_BMDisplayHomeExplicit,
      CCM_BMDisplayHomeImplicit
  {
  };
};

#endif /* CIAO_BMDISPLAYE_IDL */