repo.or.cz
/
cinelerra_cv
/
ct.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
r1010: Save mask point coordinates using %g instead of %e to save space.
[cinelerra_cv/ct.git]
/
guicast
/
testobject.C
blob
64578088e0ebf37771b50a6c958d429f98852ceb
1
#include "testobject.h"
2
3
TestObject::TestObject(char *text)
4
{
5
printf("TestObject() %s\n", text);
6
}
7
8
TestObject::~TestObject()
9
{
10
printf("~TestObject()\n");
11
}
12