/
githubmirror
/
nbs
Обзор
Документация
Войти
/
githubmirror
/
nbs
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
contrib/python/contourpy/src/contour_generator.h
23 строки
580 B
Anton Myagkov
Update ydb version to 24.4 (#4579)
07 фев 2026, 11:59
Не верифицирован
07 фев 2026, 11:59
2c21cae
Код
Авторство
О чём код?
#ifndef CONTOURPY_CONTOUR_GENERATOR_H #define CONTOURPY_CONTOUR_GENERATOR_H #include "common.h" namespace contourpy { class ContourGenerator { public: // Non-copyable and non-moveable. ContourGenerator(const ContourGenerator& other) = delete; ContourGenerator(const ContourGenerator&& other) = delete; ContourGenerator& operator=(const ContourGenerator& other) = delete; ContourGenerator& operator=(const ContourGenerator&& other) = delete; protected: ContourGenerator() = default; }; } // namespace contourpy #endif // CONTOURPY_CONTOUR_GENERATOR_H