MCPcopy Create free account
hub / github.com/arun11299/cpp-subprocess / HolderBase

Class HolderBase

cpp-subprocess/subprocess.hpp:1028–1031  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1026
1027private:
1028 struct HolderBase {
1029 virtual void operator()() const = 0;
1030 virtual ~HolderBase(){};
1031 };
1032 template <typename T>
1033 struct FuncHolder: HolderBase {
1034 FuncHolder(T func): func_(std::move(func)) {}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected