Dominik Meyer
9537c93212
git-subtree-dir: docs/doxygen-awesome-css git-subtree-split: a8bc4f25800f1a03be296f56bb6a4e61cbeb91a9
27 lines
548 B
C++
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;
|
|
}
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|