*** empty log message ***
This commit is contained in:
parent
031018bcb2
commit
f5483ce396
|
|
@ -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();
|
||||
|
|
|
|||
|
|
@ -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();
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue