r370: Heroine Virutal's official release 1.2.1
[cinelerra_cv/mob.git] / hvirtual / guicast / workarounds.C
blob1d971de9610e131c09db7faaf4f33c2f1f081f74
1 #include "workarounds.h"
3 void Workarounds::copy_int(int &a, int &b)
5         a = b;
8 double Workarounds::divide_double(double a, double b)
10         return a / b;
13 void Workarounds::copy_double(double *a, double b)
15         *a = b;