CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: shawnwang

Search: Search took 0.03 seconds.

  1. Re: Override different part of member functions in different derived classes

    Agreed. After looking around for better (cleaner) solutions and didn't find a clear winner, having a lot of derived names and copying the constructors don't seem that ugly any more. And the best...
  2. Re: Override different part of member functions in different derived classes

    Yes, this is a neat solution. The only problem with this one is that in some of the specialization, I'd like to use the default implementation first and then do some extra stuff. So I need...
  3. Re: Override different part of member functions in different derived classes

    How? Please elaborate...
  4. Re: Override different part of member functions in different derived classes

    Well, this is a trivial example. In the actually case, I have much more meaningful names, like:
    CPolicy<H264Encoder>.
  5. Override different part of member functions in different derived classes

    This the problem I am facing. I have a Base class which has several virtual functions declared and defined. I also have several Derived classes inherited from Base. Each derived class wants to...
Results 1 to 5 of 5





Click Here to Expand Forum to Full Width

Featured