Click here to Skip to main content
15,891,431 members
Articles / Web Development / HTML

Server Wizard

Rate me:
Please Sign up or sign in to vote.
4.83/5 (6 votes)
1 Feb 2013CPOL7 min read 31.1K   1.9K   33  
A Visual C++ Project Wizard for the fast creation of high performance TCP servers in C++
/*
 * StopWatchImpl.h
 *
 *  Created on: May 27, 2011
 *      Author: sst
 */

#ifndef STOPWATCHIMPL_H_
#define STOPWATCHIMPL_H_

namespace PushFramework
{

class StopWatchImpl
{
public:
    virtual ~StopWatchImpl();


    StopWatchImpl();

    void reset();
    double getElapsedTime(bool bStart = true);
private:
    LARGE_INTEGER	m_QPFrequency;
    LARGE_INTEGER	m_StartCounter;
    LARGE_INTEGER	m_LastCounter;
};

}
#endif /* STOPWATCHIMPL_H_ */

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Technical Lead
Tunisia Tunisia
Services:
http://www.pushframework.com/?page_id=890

Comments and Discussions