mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-04-07 13:55:33 +08:00
18 lines
346 B
C++
18 lines
346 B
C++
#pragma once
|
|
|
|
class RtfToken
|
|
{
|
|
public: typedef enum {None ,Keyword,Control ,Text ,Eof,GroupStart ,GroupEnd} RtfTokenType;
|
|
public: RtfTokenType Type;
|
|
public: CStringA Key;
|
|
public: bool HasParameter;
|
|
public: int Parameter;
|
|
|
|
public: RtfToken()
|
|
{
|
|
Type = None;
|
|
Key = "";
|
|
HasParameter = false;
|
|
Parameter = 0;
|
|
}
|
|
}; |