djwilliams 0 Posted April 18, 2008 Report Share Posted April 18, 2008 HI I cannot get this code to compile: class event{ unsigned char priorityLevel; event(unsigned char priority){priorityLevel=priority;} . . . } class Timer0Overflow: public class event { Timer0Overflow(unsigned char priority):event(priority){ } . . . } I have checked the syntax is correct by compiling also in Visual C++ Many thanks Dave Quote Link to post Share on other sites
Pavel 0 Posted April 18, 2008 Report Share Posted April 18, 2008 From BoostC++ help: "Note: Currently for class objects of inherited types only default constructors of base types are called...". BoostC++ does not yet support call of not default base class constructors. Regards, Pavel Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You are posting as a guest. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.