summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_2935_Regression/ThreeTier.idl
blob: f7d2c19f453688007c66a1321bc716c184b47fd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* -*- C++ -*- */
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 ();
};