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 <iostream> | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| #include <unistd.h> | |
| #include <opencv2/imgproc/imgproc.hpp> | |
| #include <opencv2/highgui/highgui.hpp> | |
| #include <X11/Xlib.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
| // from: http://stackoverflow.com/questions/2226920/how-to-monitor-clipboard-content-changes-in-c | |
| /// <summary> | |
| /// Provides notifications when the contents of the clipboard is updated. | |
| /// </summary> | |
| public sealed class ClipboardNotification | |
| { | |
| /// <summary> | |
| /// Occurs when the contents of the clipboard is updated. | |
| /// </summary> |
NewerOlder