22 lines
601 B
C++
22 lines
601 B
C++
////////////////////////////////////////////////////////////////////////////////
|
|
// Copyright 2017 Google LLC.
|
|
//
|
|
// This software is licensed under the terms defined in the Widevine Master
|
|
// License Agreement. For a copy of this agreement, please contact
|
|
// widevine-licensing@google.com.
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef BASE_TIMESTAMP_H_
|
|
#define BASE_TIMESTAMP_H_
|
|
|
|
namespace widevine {
|
|
|
|
class BuildData {
|
|
public:
|
|
static const char* Timestamp() { return __DATE__ " " __TIME__; }
|
|
};
|
|
|
|
} // namespace widevine
|
|
|
|
#endif // BASE_TIMESTAMP_H_
|