summaryrefslogtreecommitdiff
path: root/TAO/examples/OBV/Sequence/series.idl
blob: c9ad41aba249db08b2c95178cfcdd6855460ae3e (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
// $Id$

// OBV Factorial test.

valuetype registry
{
  public long value;

  //  factory init (in long x);
};

typedef sequence<registry> registries;

interface series
{
  // Basic value type check.
  registry cube (in registry v);

  // Add series
  registries sum (in registries x);

  // Factorial operation.
  //  registries factorial (in registries init);

  // shutting down the server
  void shutdown ();
};