repo.or.cz
/
cinelerra_cv
/
mob.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
r370: Heroine Virutal's official release 1.2.1
[cinelerra_cv/mob.git]
/
hvirtual
/
guicast
/
workarounds.C
blob
1d971de9610e131c09db7faaf4f33c2f1f081f74
1
#include "workarounds.h"
2
3
void Workarounds::copy_int(int &a, int &b)
4
{
5
a = b;
6
}
7
8
double Workarounds::divide_double(double a, double b)
9
{
10
return a / b;
11
}
12
13
void Workarounds::copy_double(double *a, double b)
14
{
15
*a = b;
16
}