Rumba C++ SDK
QueryContext.h
Go to the documentation of this file.
1 /*
2 
3  *
4  ***
5  *****
6  ********************* Mercenaries Engineering SARL
7  ***************** Copyright (C) 2020
8  *************
9  ********* http://www.mercenaries-engineering.com
10  ***********
11  **** ****
12  ** **
13 
14 */
15 #pragma once
16 
17 #include "Export.h"
18 
19 namespace maquina
20 {
22  {
23  public:
24  QueryContext(float frame);
25 
26  // Returns the frame at which the value should be evaluated.
27  float frame() const;
28 
29  private:
30  float _frame; // The frame at which the value should be evaluated or current_frame
31  public:
33  const static float current_frame;
34  };
35 }
static const float current_frame
Definition: QueryContext.h:33
This version of the SDK is unstable, i-e, it may change with no warning.
Definition: AddCurveAction.h:20
#define MAQUINA_EXPORT
Definition: Export.h:31
static const QueryContext at_current_frame
Query at the current frame.
Definition: QueryContext.h:32
Definition: QueryContext.h:21