PicoScenes API Docs
 
Loading...
Searching...
No Matches
PyPicoScenes.hxx
Go to the documentation of this file.
1//
2// Created by xmh on 25-4-18.
3//
4
5#ifndef PYPICOSCENES_HXX
6#define PYPICOSCENES_HXX
7
8#include <string>
9#include "AbstractNIC.hxx"
10
20void PicoScenesStart() noexcept;
21
30void PicoScenesStop() noexcept;
31
41void PicoScenesWait() noexcept;
42
52std::shared_ptr<AbstractNIC> getNIC(std::string nicName) noexcept;
53
54#endif //PYPICOSCENES_HXX
void PicoScenesStop() noexcept
Stops the PicoScenes platform.
void PicoScenesStart() noexcept
Initializes and starts the PicoScenes platform.
void PicoScenesWait() noexcept
Blocks the current thread until PicoScenes is stopped.
std::shared_ptr< AbstractNIC > getNIC(std::string nicName) noexcept
Retrieves a network interface controller by name.
Abstract base class for Network Interface Card (NIC) operations.