InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
ITimeData.h
1 /************************************************************************
2  Copyright 2022 Adobe
3  All Rights Reserved.
4  NOTICE: Adobe permits you to use, modify, and distribute this file in accordance with the terms of the Adobe license agreement accompanying it.
5 *************************************************************************
6 */
7 
8 #ifndef __ITimeData__
9 #define __ITimeData__
10 
11 #include "IPMUnknown.h"
12 #include "CommandID.h"
13 
14 
21 class ITimeData : public IPMUnknown
22 {
23  public:
24  enum { kDefaultIID = IID_ITIMEDATA };
25 
29  virtual void Set( uint64 time ) = 0;
30 
34  virtual uint64 Get() const = 0;
35 };
36 
37 #endif
38