Ticket #5965: Derived.hpp

File Derived.hpp, 141 bytes (added by Simon <simon.siemens@…>, 11 years ago)

The sub-class. A list of pointers to this class is saved in the base class.

Line 
1#include "Base.hpp"
2
3class Derived : public Base<bool>
4{
5public:
6 void
7 do_something(const int& t)
8 {
9 t_ = t;
10 }
11
12private:
13 int t_;
14};