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 CARCHTIMEUNIX_H
|
|
|
|
#define CARCHTIMEUNIX_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 CArchTimeUnix
|
2002-06-04 12:26:23 +00:00
|
|
|
|
2003-01-04 22:01:32 +00:00
|
|
|
class CArchTimeUnix : public IArchTime {
|
|
|
|
public:
|
|
|
|
CArchTimeUnix();
|
|
|
|
virtual ~CArchTimeUnix();
|
2002-06-04 12:26:23 +00:00
|
|
|
|
2003-01-04 22:01:32 +00:00
|
|
|
// IArchTime overrides
|
|
|
|
virtual double time();
|
|
|
|
};
|
2002-06-19 11:23:49 +00:00
|
|
|
|
2002-06-04 12:26:23 +00:00
|
|
|
#endif
|