=default for generated implementation copy ctor
[ACE_TAO.git] / TAO / tests / Bug_3547_Regression / Stock_Quoter.idl
blobff497c4e11cc7ac183233bd9677be1ce3c5fca4d
1 #ifndef Stock_Quoter_idl
2 #define Stock_Quoter_idl
4 #include "Stock_Quoter_Types.idl"
6 exception Bad_Ticker_Symbol
8 string symbol;
9 };
11 interface Stock_Quoter
13 float get_quote (in Stock_Quoter_Types::Stock_ID stock_id)
14 raises (Bad_Ticker_Symbol);
15 oneway void shutdown ();
18 #endif /* Stock_Quoter_idl */