#pragma once #include #include "example.hpp" #include namespace MyLibrary { class SubclassExample : public Example { public: /** * @bug second bug * @return */ int virtualfunc() override; std::shared_ptr super_long_function_with_lots_of_parameters(std::shared_ptr& text, std::shared_ptr& text2) { if(true) { std::cout << "this even has some code." << std::endl; } } }; }