/* [<][>][^][v][top][bottom][index][help] */
DEFINITIONS
This source file includes following definitions.
- main
#include <mingpp.h>
#include <cstdlib>
int main()
{
try {
SWFMovie *m = new SWFMovie(8);
SWFShape *shape = new SWFShape();
shape->setLineStyle(4, 25, 0, 0, 128);
shape->movePenTo(5, 5);
shape->drawLineTo(50, 100);
shape->drawLineTo(100, 100);
m->add(shape);
m->save("test01.swf");
}
catch(SWFException &e)
{
std::cerr << "SWFException: " << e.what() << std::endl << std::endl;
return EXIT_FAILURE;
}
return 0;
}