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

Search:

Type: Posts; User: Zyrion

Search: Search took 0.02 seconds.

  1. Replies
    5
    Views
    2,763

    Re: Error in implenting class from .h into .cpp

    I was being dumb! I forgot destructors are automatically invoked when an object is destroyed or goes out of scope. I should have used the keyword delete myPing, ( I was trying to call the destructor...
  2. Replies
    5
    Views
    2,763

    Error in implenting class from .h into .cpp

    I've been stressing on finding these errors that my compiler is giving me in this code.

    ping.h


    //=========================
    //include guard
    #ifndef __PING_H__
    #define __PING_H__...
  3. Replies
    1
    Views
    1,792

    Adding to .Pro file (Qt)

    I created a new project in Qt Creator, the files included are the .Pro file, and the .Cpp file.

    Qt does not recognize the headers I try to reference in the .Cpp file. I am pretty sure it's because...
  4. Replies
    1
    Views
    819

    Move constructor in class definition

    I am unable to understand how a move constructor works in this example of code. If someone could break down the process of what is taking place and explain to me on why to use a move constructor.

    ...
  5. Thread: C++ Ping

    by Zyrion
    Replies
    2
    Views
    1,318

    Re: C++ Ping

    Thank you for your help! I'll be spending some time reading this e-Book.
  6. Thread: C++ Ping

    by Zyrion
    Replies
    2
    Views
    1,318

    C++ Ping

    A ping test determines whether your computer can communicate with another computer over the network. My question is what steps should I take in order to figure out how to to "ping" another computer?...
Results 1 to 6 of 6





Click Here to Expand Forum to Full Width

Featured