r793: Small API addon, so plugins can 'see' camera and projector automation
[cinelerra_cv/mob.git] / cinelerra / workarounds.h
blob2f4330349a7b8eefea719213f0f4bcdd8aa46932
1 #ifndef WORKAROUNDS_H
2 #define WORKAROUNDS_H
4 // GCC 3.0 workarounds
5 #include <stdint.h>
7 class Workarounds
9 public:
10 Workarounds() {};
11 ~Workarounds() {};
13 static void clamp(int32_t &x, int32_t y, int32_t z);
14 static void clamp(int64_t &x, int64_t y, int64_t z);
15 static void clamp(float &x, float y, float z);
16 static void clamp(double &x, double y, double z);
17 static float pow(float x, float y);
22 #endif