mirror of
https://github.com/spicetools/spicetools.git
synced 2026-03-22 02:14:22 -05:00
14 lines
239 B
C++
14 lines
239 B
C++
#pragma once
|
|
|
|
#include <memory>
|
|
|
|
namespace script {
|
|
class Instance;
|
|
|
|
void manager_scan();
|
|
void manager_add(std::shared_ptr<Instance> instance);
|
|
void manager_boot();
|
|
void manager_config();
|
|
void manager_shutdown();
|
|
}
|