OpenTwin 0.1
OpenTwin
 
Loading...
Searching...
No Matches
StringToNumericCheck.h
Go to the documentation of this file.
1#pragma once
2#include <string>
3
4
5namespace ot
6{
7 namespace StringToNumericCheck
8 {
9 bool __declspec(dllexport) fitsInInt32(const std::string& str);
10 bool __declspec(dllexport) fitsInInt64(const std::string& str);
11 bool __declspec(dllexport) fitsInFloat(const std::string& str);
12 bool __declspec(dllexport) fitsInDouble(const std::string& str);
13 }
14}
Definition Connector.h:8
class __declspec(dllexport) EntityAPI
Transforms a string into a json and subsequently into ot::variable. Strings values that are numbers a...
Definition EntityAPI.h:15