ufe  3.2
Universal Front End is a DCC-agnostic component that will allow a DCC to browse and edit data in multiple data models
cameraHandler.h
Go to the documentation of this file.
1 #line 1 "S:/jenkins/workspace/ECP/ufe/ufe-full-python3.9-windows/ufe/include/cameraHandler.h"
2 #ifndef _cameraHandler
3 #define _cameraHandler
4 // ===========================================================================
5 // Copyright 2020 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 "camera.h"
13 #include "sceneItem.h"
14 
15 UFE_NS_DEF {
16 
17 class Path;
18 
20 
27 {
28 public:
29  typedef std::shared_ptr<CameraHandler> Ptr;
31  CameraHandler();
33  CameraHandler(const CameraHandler&) = default;
35  virtual ~CameraHandler();
36 
43  virtual Camera::Ptr camera(
44  const SceneItem::Ptr& item) const = 0;
45 
46 };
47 
48 }
49 
50 #endif /* _cameraHandler */
Factory base class for Camera interface.
Definition: cameraHandler.h:26
std::shared_ptr< Camera > Ptr
Definition: camera.h:52
#define UFE_NS_DEF
Definition: ufe.h:35
std::shared_ptr< SceneItem > Ptr
Definition: sceneItem.h:40
std::shared_ptr< CameraHandler > Ptr
Definition: cameraHandler.h:29
#define UFE_SDK_DECL
Definition: ufeExport.h:36