This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ; Increase maximum hotkeys (needed for scrolling to work) | |
| #HotkeyInterval 250 | |
| ; Alt-3 for Hash/Pound | |
| !3:: | |
| Send {#} | |
| Return | |
| ; Invert scrolling direction (OS X Lion behaviour) | |
| WheelUp:: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <cstdio> | |
| #include <string> | |
| #include <sstream> | |
| #include <stdexcept> | |
| #ifdef _MSC_VER | |
| #include <Windows.h> | |
| #include <direct.h> | |
| #else | |
| #include <dlfcn.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Pipeline base class | |
| template <typename T, typename F> | |
| class Pipeline | |
| { | |
| public: | |
| typedef std::function<F> Func; | |
| Pipeline() = default; |
OlderNewer