mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
20 lines
340 B
Python
20 lines
340 B
Python
from PikaObj import *
|
|
|
|
|
|
class MemChecker:
|
|
def max(self): ...
|
|
def now(self): ...
|
|
|
|
@PIKA_C_MACRO_IF("!PIKA_NANO_ENABLE")
|
|
def getMax(self) -> float: ...
|
|
|
|
@PIKA_C_MACRO_IF("!PIKA_NANO_ENABLE")
|
|
def getNow(self) -> float: ...
|
|
|
|
@PIKA_C_MACRO_IF("!PIKA_NANO_ENABLE")
|
|
def resetMax(self): ...
|
|
|
|
|
|
class SysObj:
|
|
pass
|