15 lines
243 B
C++
15 lines
243 B
C++
// VariableClock.cpp
|
|
// Copyright 2016 Robin.Rowe@CinePaint.org
|
|
// License open source MIT
|
|
|
|
#include "VariableClock.h"
|
|
|
|
namespace portable
|
|
{
|
|
|
|
double VariableClock::speed;
|
|
timeval VariableClock::dayStart;
|
|
timespec VariableClock::clockStart;
|
|
|
|
}
|