summaryrefslogtreecommitdiff
path: root/components/inotifyswitched.hpp
blob: a322107f28cbec783d251edeff48aa3d5db6c8f5 (plain)
1
2
3
4
5
6
7
8
#pragma once

// for things that are used in stackswitchers to be able to be told when they're switched to

class INotifySwitched {
public:
    virtual void on_switched_to() {};
};