2002-08-02 19:57:46 +00:00
|
|
|
/*
|
|
|
|
* synergy -- mouse and keyboard sharing utility
|
|
|
|
* Copyright (C) 2002 Chris Schoeneman
|
|
|
|
*
|
2003-01-04 22:01:32 +00:00
|
|
|
* This package is free software you can redistribute it and/or
|
2002-08-02 19:57:46 +00:00
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* found in the file COPYING that should have accompanied this file.
|
|
|
|
*
|
|
|
|
* This package is distributed in the hope that it will be useful,
|
2003-01-04 22:01:32 +00:00
|
|
|
* but WITHOUT ANY WARRANTY without even the implied warranty of
|
2002-08-02 19:57:46 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*/
|
|
|
|
|
2003-01-04 22:01:32 +00:00
|
|
|
#ifndef CARCHTIMEWINDOWS_H
|
|
|
|
#define CARCHTIMEWINDOWS_H
|
2002-06-04 12:26:23 +00:00
|
|
|
|
2003-01-04 22:01:32 +00:00
|
|
|
#include "IArchTime.h"
|
2002-06-04 12:26:23 +00:00
|
|
|
|
2003-01-04 22:01:32 +00:00
|
|
|
#define ARCH_TIME CArchTimeWindows
|
2002-06-04 12:26:23 +00:00
|
|
|
|
2003-01-05 21:48:54 +00:00
|
|
|
//! Win32 implementation of IArchTime
|
2003-01-04 22:01:32 +00:00
|
|
|
class CArchTimeWindows : public IArchTime {
|
|
|
|
public:
|
|
|
|
CArchTimeWindows();
|
|
|
|
virtual ~CArchTimeWindows();
|
2002-06-04 12:26:23 +00:00
|
|
|
|
2003-01-04 22:01:32 +00:00
|
|
|
// IArchTime overrides
|
|
|
|
virtual double time();
|
|
|
|
};
|
2002-06-04 12:26:23 +00:00
|
|
|
|
|
|
|
#endif
|