You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
456 B
24 lines
456 B
//
|
|
// enumprop.h
|
|
//
|
|
|
|
#ifndef ENUMPROP_H
|
|
#define ENUMPROP_H
|
|
|
|
#include "erfa.h"
|
|
|
|
class CEnumPropertyRanges : public CEnumRangesFromAnchorsBase
|
|
{
|
|
public:
|
|
CEnumPropertyRanges()
|
|
{
|
|
Dbg_MemSetThisNameIDCounter(TEXT("CEnumPropertyRanges"), PERF_ENUMPROPRANGE_COUNTER);
|
|
}
|
|
|
|
BOOL _Init(CInputContext *pic, IAnchor *paStart, IAnchor *paEnd, CProperty *pProperty);
|
|
|
|
private:
|
|
DBG_ID_DECLARE;
|
|
};
|
|
|
|
#endif // ENUMPROP_H
|