RAMSES Documentation  27.0.130
Information for RAMSES users and developers
Animation.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_ANIMATION_H
10 #define RAMSES_ANIMATION_H
11 
14 
15 namespace ramses
16 {
22  {
23  public:
30 
37 
41  class AnimationImpl& impl;
42 
43  protected:
47  friend class AnimationSystemData;
48 
54  explicit Animation(AnimationImpl& pimpl);
55 
61  Animation(const Animation& other);
62 
69  Animation& operator=(const Animation& other);
70 
74  virtual ~Animation();
75  };
76 }
77 
78 #endif
#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
The Animation combines spline with one or more AnimatedProperty instances and allows control of the a...
Definition: Animation.h:22
Animation & operator=(const Animation &other)
Assignment operator of Animation.
globalTimeStamp_t getStartTime() const
Gets global time stamp for when animation is set to start.
class AnimationImpl & impl
Stores internal data for implementation specifics of Animation.
Definition: Animation.h:41
virtual ~Animation()
Destructor of the Animation.
globalTimeStamp_t getStopTime() const
Gets global time stamp for when animation is set to stop.
Animation(AnimationImpl &pimpl)
Constructor of the Animation.
Animation(const Animation &other)
Copy constructor of Animation.
The RAMSES namespace contains all client side objects and functions used to implement RAMSES applicat...
Definition: AnimatedProperty.h:15
uint64_t globalTimeStamp_t
Definition: AnimationTypes.h:17