~ubuntu-branches/ubuntu/lucid/ming/lucid

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#include <mingpp.h>
#include <cstdlib>
 
int main ()
{
try {
  SWFMovie *movie;
  SWFVideoStream *video1;
  SWFVideoStream *video2;
 
  movie = new SWFMovie(7);
 
  video1 = new SWFVideoStream ();
  movie->add (video1);
 
  video2 = new SWFVideoStream ();
  movie->add ( video2);
 
  movie->save ("test02.swf");
}
catch(SWFException &e)
{
	std::cerr << "SWFException: " << e.what() << std::endl << std::endl;
	return EXIT_FAILURE;
}
return 0;

}