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