Main Page | Namespace List | Class Hierarchy | Class List | Directories | File List | Namespace Members | Class Members | File Members | Related Pages

ippDaemon.cpp

Go to the documentation of this file.
00001 // 
00002 // DISCLAIMER: 
00003 //  This software was produced by the National Institute of Standards 
00004 //  and Technology (NIST), an agency of the U.S. government, and by statute is 
00005 //  not subject to copyright in the United States.  Recipients of this 
00006 //  software assume all responsibility associated with its operation,
00007 //  modification,maintenance, and subsequent redistribution. 
00008 //
00009 //  See NIST Administration Manual 4.09.07 b and Appendix I. 
00010 //
00011 #include "stdafx.h"
00012 
00013 #include "ippdme/ippDaemon.h"
00014 
00015 #include <limits.h>
00016 #include <float.h>
00017 #include <windows.h> // for GetTickCount... this need sorting 
00018 
00019 
00020 #ifdef _DEBUG
00021 #define new DEBUG_NEW
00022 #undef THIS_FILE
00023 static char THIS_FILE[] = __FILE__;
00024 #endif
00025 
00026 //==============================================================================
00027 ippDaemon::ippDaemon(
00028    int tag,
00029    ippOnMoveReportECommandConstPtr cmd
00030 )
00031 //
00032 //-----------------------------------------------------------------------------
00033 : _tagNumber(tag)
00034 , _command(cmd)
00035 , _lastX(DBL_MAX)
00036 , _lastY(DBL_MAX)
00037 , _lastZ(DBL_MAX)
00038 {
00039   _lastTimeServiced = ::GetTickCount();
00040 
00041 }

Generated on Wed Nov 8 00:20:03 2006 for IPPDME by  doxygen 1.4.1