mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-03 17:56:44 +02:00
10 lines
240 B
C
10 lines
240 B
C
|
|
#pragma once
|
||
|
|
#include <string>
|
||
|
|
#include <unordered_map>
|
||
|
|
|
||
|
|
namespace ExprtkCalculator::internal
|
||
|
|
{
|
||
|
|
std::wstring EvaluateExpression(
|
||
|
|
const std::string& expression,
|
||
|
|
const std::unordered_map<std::string, double>& constants);
|
||
|
|
}
|