You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
433 B
C++
19 lines
433 B
C++
#pragma once
|
|
|
|
#include "iBase_global.h"
|
|
#include "ZxXpf.h"
|
|
|
|
// Xpf文件格式Helper
|
|
class I_BASE_EXPORT ZxXpfHelper
|
|
{
|
|
public:
|
|
static bool getMinMax(ZxXpfNode* node, int& nMin, int& nMax, \
|
|
int nDefaultMin = -1e8, int nDefaultMax = 1e8);
|
|
static bool getMinMax(ZxXpfNode* node, double& dMin, double& dMax, \
|
|
double dDefaultMin = -1e32, double dDefaultMax = 1e32);
|
|
};
|
|
|
|
|
|
|
|
|