WhisperCom/include/MyLibrary/subclass-example.hpp
Dominik Meyer 9537c93212 Squashed 'docs/doxygen-awesome-css/' content from commit a8bc4f25
git-subtree-dir: docs/doxygen-awesome-css
git-subtree-split: a8bc4f25800f1a03be296f56bb6a4e61cbeb91a9
2021-08-19 22:02:24 +02:00

27 lines
548 B
C++

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