|
|
|
@ -1,4 +1,5 @@ |
|
|
|
#pragma once |
|
|
|
#pragma once |
|
|
|
|
|
|
|
#include "python_bind.h" |
|
|
|
#include <string> |
|
|
|
#include <string> |
|
|
|
#include <vector> |
|
|
|
#include <vector> |
|
|
|
|
|
|
|
|
|
|
|
@ -7,5 +8,6 @@ namespace Documentation { |
|
|
|
public: |
|
|
|
public: |
|
|
|
static std::vector<std::string> get_headers(const std::string &symbol) noexcept; |
|
|
|
static std::vector<std::string> get_headers(const std::string &symbol) noexcept; |
|
|
|
static std::string get_url(const std::string &symbol) noexcept; |
|
|
|
static std::string get_url(const std::string &symbol) noexcept; |
|
|
|
|
|
|
|
static void init_module(py::module &api); |
|
|
|
}; |
|
|
|
}; |
|
|
|
} // namespace Documentation
|
|
|
|
} // namespace Documentation
|
|
|
|
|