all repos — fluxbox @ a4052120b1f7e5b4e09a803eee9a6c2d55695443

custom fork of the fluxbox windowmanager

src/FbTk/Select2nd.hh (raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef FBTK_SELECT2ND_HH
#define FBTK_SELECT2ND_HH

#include <functional>

namespace FbTk {

template <class A>
class Select2nd:public std::unary_function<A, typename A::second_type> {
public:
    typename A::second_type operator () (const A &arg) const {
        return arg.second;
    }
};

} // namespace FbTk

#endif // FBTK_SELECT2ND_HH