summaryrefslogtreecommitdiff
path: root/graphs/cpp/chain_of_responsibility/vice_president.cc
blob: 0316d63fcb88ed34d6fe6613dc4f57302c6f51da (plain)
1
2
3
4
5
6
7
8
9
10
#include "vice_president.hh"

#include <iostream>
void VicePresident::handle_request(int level)
{
    if (level <= 6)
        std::cout << "VicePresident handles\n";
    else
        forward_request(level);
}