#ifndef PROTON_CONTEXT_PYTHON_H_ #define PROTON_CONTEXT_PYTHON_H_ #include "Context.h" namespace proton { /// Unwind the Python stack and early return a list of contexts. class PythonContextSource : public ContextSource { public: PythonContextSource() = default; size_t getDepth() override; private: std::vector getContextsImpl() override; }; } // namespace proton #endif // PROTON_CONTEXT_PYTHON_H_