summaryrefslogtreecommitdiffstats
path: root/tags/cpp-0.1.incubating-M1-RC3/sca/samples/BigBank/Accounts/StockQuoteService.h
blob: cd61d4c4d231e4458c6cd315b2be0eb69696c0dc (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
namespace com
{
    namespace bigbank
    {
        namespace stockquote
        {

    /*
     *  AccountsService C interface
     */

			class StockQuoteService {
				public:
				virtual float getQuote(const char* symbol) = 0;

			};

		}
	} 		 
} // namespace;

using namespace com::bigbank::stockquote;