Click here to Skip to main content
15,897,032 members
Articles / Programming Languages / C++

CORBA Application Wizard - A Tutorial on usage. Part II

Rate me:
Please Sign up or sign in to vote.
4.92/5 (9 votes)
3 Nov 20035 min read 43K   1.2K   16  
A tutorial on how to use the CORBA Application Wizard
#ifndef Quoter_module
#define Quoter_module

module Quoter
{
	exception Invalid_Stock_Symbol {};

	interface Stock
	{
		double price();

		readonly attribute string symbol;
		readonly attribute string full_name;
	};

	interface StockFactory
	{
		Stock get_stock(in string stock_symbol) raises (Invalid_Stock_Symbol);
	};

};

#endif	//Quoter_module

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
United Kingdom United Kingdom
I am a qualified Veterinary Surgeon who prefers treating computers with viruses than animals with viruses. I have recently completed a MEng German Informatics degree at the University of Reading with a 2:1. I also have the ISEB Foundation Certificate in Software Testing.

Currently I am umemployed and desparately looking for a job in the IT industry.

Comments and Discussions