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
r1009: Move the dependencies to newer package names
[cinelerra_cv/mob.git]
/
cinelerra
/
formatcheck.h
blob
3b41ec8d82a31106fb4be7f30a33393d03ba7701
1
#ifndef FORMATCHECK_H
2
#define FORMATCHECK_H
3
4
#include
"assets.inc"
5
6
class
FormatCheck
7
{
8
public
:
9
FormatCheck
(
Asset
*
asset
);
10
~
FormatCheck
();
11
12
int
check_format
();
13
14
private
:
15
Asset
*
asset
;
16
};
17
18
19
#endif