summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_2935_Regression/ThreeTier.idl
blob: 1bb4cf44f78f2e31d1ba42c8d8a716aa3ee8acb4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* -*- C++ -*- */
// $Id$

interface ThreeTier
{
  /// record the occurrence of a tick
  oneway void tick ();

  /// record the occurrence of a tock
  void tock ();

  /// report the number of ticks
  unsigned long tickCount();

  /// report the number of tocks
  unsigned long tockCount();

  /// Shutdown the application.
  oneway void shutdown ();
};