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
456 B
C++
19 lines
456 B
C++
#pragma once
|
|
|
|
#include "iProperty_global.h"
|
|
#include "ZxXpf.h"
|
|
|
|
// Xpf文件格式Helper
|
|
class I_PROPERTY_EXPORT ZxXpfHelper
|
|
{
|
|
public:
|
|
static bool getMinMax(ZxXpfNode* node, int& nMin, int& nMax, \
|
|
int nDefaultMin = 0xFFFFFFFF, int nDefaultMax = 0x7FFFFFFF);
|
|
static bool getMinMax(ZxXpfNode* node, double& fMin, double& fMax, \
|
|
double fDefaultMin = -1e100, double fDefaultMax = 1e100);
|
|
};
|
|
|
|
|
|
|
|
|