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
Merge branch 'ct' of git.pipapo.org:cinelerra-ct into ct
[cinelerra_cv/ct.git]
/
guicast
/
testobject.C
blob
26216af29117b04d5cedfb2f44989930acf16172
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
13
/*
14
// Local Variables:
15
// mode: C++
16
// c-file-style: "linux"
17
// End:
18
*/