Re: using namespace quantlib not working vc7

Posted by Luigi Ballabio on
URL: http://quantlib.414.s1.nabble.com/using-namespace-quantlib-not-working-vc7-tp3498p3499.html

On 01/09/05 15:29:07, Satish Vangipuram wrote:
> i have setup quantlib under vc7 on a windows xp laptop.. i have
> quantlib working but the namespaces are not working for me.. as soon
> as i introduce a namespace i got compile-time errors:
> example:
> using namespace QuantLib::Pricers;

Satish,
        sub-namespaces no longer exist. Just use "using namespace  
QuantLib;" to import all names into the global namespace.

Later,
        Luigi