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

Search:

Type: Posts; User: smishash

Search: Search took 0.02 seconds.

  1. Replies
    4
    Views
    1,006

    Re: creat and load objects into a vector.

    Hi,

    As I see the declaration :
    Bid getNextBid(int trdId, int qty, int price, char type);
    differs from definition :
    Bid Trader::getNextBid() { ...
    This is probably the reason.
    I would change...
  2. Replies
    4
    Views
    9,710

    Re: "Qt" or "boost" threads?

    Hello,
    Thank you for the good answers,I will probably use the boost library

    MIchael.
  3. Replies
    4
    Views
    9,710

    "Qt" or "boost" threads?

    Hello all,

    I am planning a cross platform application,and going to use Qt library for
    GUI.Also going to separate the UI from the actual code.So that in
    the future I could change the GUI...
  4. Replies
    9
    Views
    28,562

    Re: Parent class to call children method

    I would like to show the simplified case which describes my goal.In general there is
    some system with feedback, and the difference between data collecting and the feedback
    is just in parameters....
  5. Replies
    9
    Views
    28,562

    Re: Parent class to call children method

    - shure, i just liked their way to "defence" themselves from unwanted deeper inheritance :-)
  6. Replies
    9
    Views
    28,562

    Re: Parent class to call children method

    Gcdef,Amleto, thanks for your advise,
    so after some googling I found a solution that seems nice - using private inheritance
    and pure virtual functions at the base class.
    ...
  7. Replies
    9
    Views
    28,562

    Parent class to call children method

    Hello all,

    I am looking for elegant way to call children's method from parent class,
    is at possible at all?

    Thanks
Results 1 to 7 of 7





Click Here to Expand Forum to Full Width

Featured