*** empty log message ***

This commit is contained in:
David Rose 2001-04-28 01:08:04 +00:00
parent 031018bcb2
commit f5483ce396
3 changed files with 6 additions and 0 deletions

View File

@ -8,6 +8,7 @@
#include <lwoToEggConverter.h>
#include <lwoHeader.h>
#include <lwoInputFile.h>
#include <config_lwo.h>
////////////////////////////////////////////////////////////////////
// Function: LwoToEgg::Constructor
@ -74,6 +75,7 @@ run() {
int main(int argc, char *argv[]) {
init_liblwo();
LwoToEgg prog;
prog.parse_command_line(argc, argv);
prog.run();

View File

@ -6,6 +6,7 @@
#include "fltToEgg.h"
#include <fltToEggConverter.h>
#include <config_flt.h>
////////////////////////////////////////////////////////////////////
// Function: FltToEgg::Constructor
@ -78,6 +79,7 @@ run() {
int main(int argc, char *argv[]) {
init_libflt();
FltToEgg prog;
prog.parse_command_line(argc, argv);
prog.run();

View File

@ -5,9 +5,11 @@
#include "lwoInputFile.h"
#include "lwoChunk.h"
#include "config_lwo.h"
int
main(int argc, char *argv[]) {
init_liblwo();
if (argc != 2) {
cerr << "test_lwo file.lwo\n";
exit(1);