managed c++

Posted by Vitthal Kulkarni on
URL: http://quantlib.414.s1.nabble.com/managed-c-tp2937.html

hi,
 
 
I am trying to convert the calendar class of Quatlib to managed c++.
I have added the calendar class and other support classes as generic c++ class codes.

I am able to instantiate the class properly. When i access the class methods such as addDays, addHours, it exposes the method parameters properly. At compile time i get error that method is not part of Calendar class

error C2039

i used following code for class instantiation

Calendars::London * LN=new Calendars::London();
LN->AddDays(System::DateTime::Today,1);

i would appreciate if anyone can guide me on the problem.

regards,

Vitthal