mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-15 02:29:36 +08:00
20 lines
325 B
C++
20 lines
325 B
C++
#pragma once
|
|
|
|
#include "IVisitable.h"
|
|
#include "../Common/LanguageCodes.h"
|
|
|
|
namespace DocFileFormat
|
|
{
|
|
class LanguageId: public IVisitable
|
|
{
|
|
public:
|
|
int Id;
|
|
LanguageCode Code;
|
|
|
|
LanguageId( int id )
|
|
{
|
|
this->Id = id;
|
|
this->Code = (LanguageCode)id;
|
|
}
|
|
};
|
|
} |