michael@0: /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: #ifndef NS_SMILTYPES_H_ michael@0: #define NS_SMILTYPES_H_ michael@0: michael@0: #include michael@0: michael@0: // A timestamp in milliseconds michael@0: // michael@0: // A time may represent: michael@0: // michael@0: // simple time -- offset within the simple duration michael@0: // active time -- offset within the active duration michael@0: // document time -- offset since the document begin michael@0: // wallclock time -- "real" time -- offset since the epoch michael@0: // michael@0: // For an overview of how this class is related to other SMIL time classes see michael@0: // the documentstation in nsSMILTimeValue.h michael@0: // michael@0: typedef int64_t nsSMILTime; michael@0: michael@0: #endif // NS_SMILTYPES_H_