Merge pull request #2222 from jwillemsen/jwi-dllexportwarning
[ACE_TAO.git] / TAO / tests / Exposed_Policies / Counter.idl
blob23f2ad366ec62584577465f7cda3c98aa52e5eb9
1 /// This interface abstracts a counter. It provides methods
2 /// for increasing and getting the value of the counter.
3 interface Counter
5 /// Increases the counter value.
6 void increment ();
8 /// Decreases the counter value.
9 long get_count ();
11 /// Sets the counter value to zero.
12 void reset ();
14 /// Shuts down the ORB on which this obj is running.
15 oneway void shutdown ();