Custom Platform Support Development Kit  1.3
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
IPublisher.h
Go to the documentation of this file.
1 /******************************************************************************
2 * ADOBE CONFIDENTIAL
3 * ___________________
4 *
5 * Copyright [2013] Adobe Systems Incorporated
6 * All Rights Reserved.
7 *
8 * NOTICE: All information contained herein is, and remains
9 * the property of Adobe Systems Incorporated and its suppliers,
10 * if any. The intellectual and technical concepts contained
11 * herein are proprietary to Adobe Systems Incorporated and its
12 * suppliers and are protected by all applicable intellectual
13 * property laws, including trade secret and copyright laws.
14 * Dissemination of this information or reproduction of this material
15 * is strictly forbidden unless prior written permission is obtained
16 * from Adobe Systems Incorporated.
17 ******************************************************************************/
18 
29 #ifndef IPUBLISHER_H_
30 #define IPUBLISHER_H_
31 
32 #include "FCMPreConfig.h"
33 #include "FCMPluginInterface.h"
34 
35 #include "FCMPreConfig.h"
36 #include "FCMTypes.h"
37 #include "FCMPluginInterface.h"
38 #include "IFCMDictionary.h"
39 #include "ITimeline.h"
40 #include "IFLADocument.h"
42 
43 
44 /* -------------------------------------------------- Forward Decl */
45 
46 
47 /* -------------------------------------------------- Macros / Constants */
48 
49 namespace Publisher
50 {
57  {0x3acf3427, 0x4fd, 0x44ef, {0x9f, 0xba, 0x3e, 0xbb, 0x62, 0xf0, 0x44, 0xa2}};
58 }
59 
60 
61 /* -------------------------------------------------- Enums */
62 
63 
64 /* -------------------------------------------------- Structs / Unions */
65 
66 
67 /* -------------------------------------------------- Class Decl */
68 
69 namespace Publisher
70 {
78 
79 
97  virtual FCM::Result _FCMCALL Publish(
98  DOM::PIFLADocument pFlaDocument,
99  const PIFCMDictionary pDictPublishSettings,
100  const PIFCMDictionary pDictConfig) = 0;
101 
102 
128  virtual FCM::Result _FCMCALL Publish(
129  DOM::PIFLADocument pFlaDocument,
130  DOM::PITimeline pTimeline,
131  const Exporter::Service::RANGE& frameRange,
132  const PIFCMDictionary pDictPublishSettings,
133  const PIFCMDictionary pDictConfig) = 0;
134 
135 
142  virtual FCM::Result _FCMCALL ClearCache() = 0;
143 
145 };
146 
147 
148 /* -------------------------------------------------- Inline / Functions */
149 
150 #include "FCMPostConfig.h"
151 
152 #endif //IPUBLISHER_H_
153 
This file contains definitions for various data types.
FCM::ConstFCMIID FCMIID_IPublisher
Defines the universally-unique Interface ID for IPublisher.
Definition: IPublisher.h:56
#define BEGIN_DECLARE_INTERFACE(ifx, iid)
Used to begin the interface ifx with ID iid, which inherits from IFCMUnknown.
Definition: FCMMacros.h:147
The definitions contained in this namespace define a framework called Flash Component Model (FCM)...
Definition: IGroup.h:36
This file contains interface for IFrameCommandGenerator. IFrameCommandGenerator provides service rela...
Defines an interface that represents publisher. This interface must be implemented by a publisher plu...
Definition: IPublisher.h:77
Provides interfaces and other definitions to access the FLA authored contents in the form of a DOM (D...
This file contains the interface for IFLADocument. The IFLADocument interface represents a FLA docume...
This file contains interface for IFCMDictionary. The IFCMDictionary is an interface for generic conta...
This file contains core definitions of the framework Flash Component Model (FCM). ...
#define _FCMCALL
Defines calling convention for interface methods.
Definition: FCMMacros.h:176
U_Int32 Result
Type to define a result. This is usually the return type for most APIs.
Definition: FCMTypes.h:126
Represents a 128 bit or 16-byte GUID (Globally Unique IDentifier) value.
Definition: FCMTypes.h:189
Provides interfaces for exporter that can be used by custom publisher.
Provides interfaces for custom publisher.
This file contains the interface for ITimeline. The ITimeline interface represents the timeline...
#define END_DECLARE_INTERFACE
Ends an interface.
Definition: FCMMacros.h:165