Leonardus
Loading...
Searching...
No Matches
interpreterservice.h
Go to the documentation of this file.
1
17#pragma once
18
19// Inc Library
20#include <string>
21#include <cstddef>
22
23
25namespace InterpreterService {
26
32 void print( const std::string & p_line );
33
34
39 void snapIfVerbose();
40
41
47 size_t getMaxopeelevel();
48
49
55 __int128 msec();
56
57
63 size_t getRealprecision();
64
65
71 bool getSuppressAEC();
72
73
79 void setRealprecision( size_t p_prec );
80
81} // namespace InterpreterService
Delegations to the static Interpreter class object.
Definition interpreterservice.cpp:24
void snapIfVerbose()
Interpreter Service snap if verbose.
Definition interpreterservice.cpp:31
void print(const std::string &p_line)
Interpreter Service print.
Definition interpreterservice.cpp:26
bool getSuppressAEC()
Interpreter Service get suppress ANSI escape codes Delegates to the Interpreter class to retrieve the...
Definition interpreterservice.cpp:51
size_t getRealprecision()
Interpreter Service get real precision.
Definition interpreterservice.cpp:46
size_t getMaxopeelevel()
Interpreter Service get maximum opee level.
Definition interpreterservice.cpp:36
void setRealprecision(size_t p_prec)
Interpreter Service set real precision.
Definition interpreterservice.cpp:56
__int128 msec()
Interpreter Service get milliseconds since start.
Definition interpreterservice.cpp:41