Files
SAPFOR/Sapfor/_src/Predictor/Lib/RedVar.h
2025-03-25 20:39:29 +03:00

25 lines
761 B
C++
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
#ifndef RedVarH
#define RedVarH
//////////////////////////////////////////////////////////////////////
//
// RedVar.h: interface for the RedVar class.
//
//////////////////////////////////////////////////////////////////////
#include "Vm.h"
class RedVar {
public:
long RedElmSize; // размер одного элемента редукционной переменной-массива в байтах
long RedArrLength; // число элементов в редукционной переменной-массиве
long LocElmSize; // размер в байтах одного элемента массива с дополнительной информацией
RedVar(long ARedElmSize, long ARedArrLength, long ALocElmSize);
RedVar();
virtual ~RedVar();
long GetSize(); // размер в байтах редукционной переменной-массива вместе с массивом дополнительной информации
};
#endif