RAMSES Documentation  27.0.130
Information for RAMSES users and developers
AnimationObject.h
Go to the documentation of this file.
1 // -------------------------------------------------------------------------
2 // Copyright (C) 2014 BMW Car IT GmbH
3 // -------------------------------------------------------------------------
4 // This Source Code Form is subject to the terms of the Mozilla Public
5 // License, v. 2.0. If a copy of the MPL was not distributed with this
6 // file, You can obtain one at https://mozilla.org/MPL/2.0/.
7 // -------------------------------------------------------------------------
8 
9 #ifndef RAMSES_ANIMATIONOBJECT_H
10 #define RAMSES_ANIMATIONOBJECT_H
11 
13 
14 namespace ramses
15 {
20  {
21  public:
25  class AnimationObjectImpl& impl;
26 
27  protected:
33  explicit AnimationObject(AnimationObjectImpl& pimpl);
34 
38  virtual ~AnimationObject();
39 
43  friend class AnimationSystemData;
44 
45  private:
49  AnimationObject(const AnimationObject& other);
50 
57  AnimationObject& operator=(const AnimationObject& other);
58  };
59 }
60 
61 #endif
62 
#define RAMSES_API
Definition: APIExport.h:35
The AnimationObject is a base class for all client API objects owned by an AnimationSystem.
Definition: AnimationObject.h:20
class AnimationObjectImpl & impl
Definition: AnimationObject.h:25
virtual ~AnimationObject()
Destructor of the AnimationObject.
AnimationObject(AnimationObjectImpl &pimpl)
Constructor for AnimationObject.
The SceneObject is a base class for all client API objects owned by a Scene.
Definition: SceneObject.h:20
The RAMSES namespace contains all client side objects and functions used to implement RAMSES applicat...
Definition: AnimatedProperty.h:15