mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 07:23:34 +08:00
11 lines
212 B
C
11 lines
212 B
C
#pragma once
|
|
|
|
struct IOperand
|
|
{
|
|
virtual operator unsigned char*() const = 0;
|
|
virtual operator const unsigned char*() const = 0;
|
|
virtual unsigned int Size() const = 0;
|
|
|
|
virtual ~IOperand() {}
|
|
};
|