ufe  4.2
Universal Front End is a DCC-agnostic component that will allow a DCC to browse and edit data in multiple data models
transform3dHandler.h
Go to the documentation of this file.
1 #line 1 "S:/jenkins/workspace/ECP/ufe/ufe-full-python3.10-windows/ufe/include/transform3dHandler.h"
2 #ifndef _transform3dHandler
3 #define _transform3dHandler
4 // ===========================================================================
5 // Copyright 2022 Autodesk, Inc. All rights reserved.
6 //
7 // Use of this software is subject to the terms of the Autodesk license
8 // agreement provided at the time of installation or download, or which
9 // otherwise accompanies this software in either electronic or hard copy form.
10 // ===========================================================================
11 
12 #include "transform3d.h"
13 #include "sceneItem.h"
14 
15 UFE_NS_DEF {
16 
17 class Path;
18 
20 
27 {
28 public:
29  typedef std::shared_ptr<Transform3dHandler> Ptr;
33  Transform3dHandler(const Transform3dHandler&) = default;
35  virtual ~Transform3dHandler();
36 
44  virtual Transform3dRead::Ptr transform3dRead(
45  const SceneItem::Ptr& item) const;
46 
53  virtual Transform3d::Ptr transform3d(
54  const SceneItem::Ptr& item) const = 0;
55 
70  const SceneItem::Ptr& item,
72  ) const {
73  (void) hint;
74  return transform3d(item);
75  }
76 };
77 
78 }
79 
80 #endif /* _transform3dHandler */
std::shared_ptr< Transform3dHandler > Ptr
std::shared_ptr< Transform3dRead > Ptr
Definition: transform3d.h:55
std::shared_ptr< Transform3d > Ptr
Definition: transform3d.h:156
Hint class for Transform3d editTransform3d.
Definition: transform3d.h:30
Factory base class for Transform3d interface.
virtual Transform3d::Ptr editTransform3d(const SceneItem::Ptr &item, const EditTransform3dHint &hint=EditTransform3dHint()) const
#define UFE_NS_DEF
Definition: ufe.h:35
std::shared_ptr< SceneItem > Ptr
Definition: sceneItem.h:40
#define UFE_SDK_DECL
Definition: ufeExport.h:36