2002-02-08 17:30:02 +08:00
|
|
|
/* ************************
|
|
|
|
Copyright Terrain Experts Inc.
|
|
|
|
Terrain Experts Inc (TERREX) reserves all rights to this source code
|
2002-03-09 18:51:09 +08:00
|
|
|
unless otherwise specified in writing by the President of TERREX.
|
2002-02-08 17:30:02 +08:00
|
|
|
This copyright may be updated in the future, in which case that version
|
|
|
|
supercedes this one.
|
|
|
|
-------------------
|
|
|
|
Terrex Experts Inc.
|
2002-03-09 18:51:09 +08:00
|
|
|
4400 East Broadway #314
|
|
|
|
Tucson, AZ 85711
|
2002-02-08 17:30:02 +08:00
|
|
|
info@terrex.com
|
2002-03-09 18:51:09 +08:00
|
|
|
Tel: (520) 323-7990
|
2002-02-08 17:30:02 +08:00
|
|
|
************************
|
|
|
|
*/
|
|
|
|
|
2002-11-25 05:36:05 +08:00
|
|
|
/* trpage_sys.h
|
|
|
|
System specific declarations.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef trpage_util_h_
|
|
|
|
#define trpage_util_h_
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <osgTXP/trpage_read.h>
|
|
|
|
#include <osgTXP/trpage_write.h>
|
|
|
|
#include <osgTXP/trpage_scene.h>
|
|
|
|
|
|
|
|
TX_EXDECL class TX_CLDECL trpgUtil {
|
|
|
|
public:
|
|
|
|
enum {DoReport = 1<<0,DoCopy = 1<<1, DoTileOpt = 1<<2};
|
|
|
|
int merge(trpgr_Archive &inArch1,trpgr_Archive &inArch2,trpgwArchive &outArch, int flags = 0);
|
|
|
|
};
|
2002-02-08 17:30:02 +08:00
|
|
|
#endif
|
2002-11-25 05:36:05 +08:00
|
|
|
|