mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-19 23:02:34 +08:00
19 lines
281 B
C++
19 lines
281 B
C++
#pragma once
|
|
|
|
#include "WrongFormulaString.h"
|
|
|
|
namespace EXCEPT
|
|
{;
|
|
namespace RT
|
|
{;
|
|
|
|
class WrongParenthesisSequence : public WrongFormulaString
|
|
{
|
|
public:
|
|
explicit WrongParenthesisSequence(const std::wstring& formula);
|
|
};
|
|
|
|
} // namespace RT
|
|
} // namespace EXCEPT
|
|
|