1package Clipboard::Win32;
2$Clipboard::Win32::VERSION = '0.28';
3use strict;
4use warnings;
5
6use Win32::Clipboard;
7
8our $board = Win32::Clipboard();
9sub copy {
10    my $self = shift;
11    $board->Set($_[0]);
12}
13sub paste {
14    my $self = shift;
15    return $board->Get();
16}
17
181;
19
20__END__
21
22=pod
23
24=encoding UTF-8
25
26=head1 VERSION
27
28version 0.28
29
30=for :stopwords cpan testmatrix url bugtracker rt cpants kwalitee diff irc mailto metadata placeholders metacpan
31
32=head1 SUPPORT
33
34=head2 Websites
35
36The following websites have more information about this module, and may be of help to you. As always,
37in addition to those websites please use your favorite search engine to discover more resources.
38
39=over 4
40
41=item *
42
43MetaCPAN
44
45A modern, open-source CPAN search engine, useful to view POD in HTML format.
46
47L<https://metacpan.org/release/Clipboard>
48
49=item *
50
51RT: CPAN's Bug Tracker
52
53The RT ( Request Tracker ) website is the default bug/issue tracking system for CPAN.
54
55L<https://rt.cpan.org/Public/Dist/Display.html?Name=Clipboard>
56
57=item *
58
59CPANTS
60
61The CPANTS is a website that analyzes the Kwalitee ( code metrics ) of a distribution.
62
63L<http://cpants.cpanauthors.org/dist/Clipboard>
64
65=item *
66
67CPAN Testers
68
69The CPAN Testers is a network of smoke testers who run automated tests on uploaded CPAN distributions.
70
71L<http://www.cpantesters.org/distro/C/Clipboard>
72
73=item *
74
75CPAN Testers Matrix
76
77The CPAN Testers Matrix is a website that provides a visual overview of the test results for a distribution on various Perls/platforms.
78
79L<http://matrix.cpantesters.org/?dist=Clipboard>
80
81=item *
82
83CPAN Testers Dependencies
84
85The CPAN Testers Dependencies is a website that shows a chart of the test results of all dependencies for a distribution.
86
87L<http://deps.cpantesters.org/?module=Clipboard>
88
89=back
90
91=head2 Bugs / Feature Requests
92
93Please report any bugs or feature requests by email to C<bug-clipboard at rt.cpan.org>, or through
94the web interface at L<https://rt.cpan.org/Public/Bug/Report.html?Queue=Clipboard>. You will be automatically notified of any
95progress on the request by the system.
96
97=head2 Source Code
98
99The code is open to the world, and available for you to hack on. Please feel free to browse it and play
100with it, or whatever. If you want to contribute patches, please send me a diff or prod me to pull
101from your repository :)
102
103L<https://github.com/shlomif/Clipboard>
104
105  git clone git://github.com/shlomif/Clipboard.git
106
107=head1 AUTHOR
108
109Shlomi Fish <shlomif@cpan.org>
110
111=head1 BUGS
112
113Please report any bugs or feature requests on the bugtracker website
114L<https://github.com/shlomif/Clipboard/issues>
115
116When submitting a bug or request, please include a test-file or a
117patch to an existing test-file that illustrates the bug or desired
118feature.
119
120=head1 COPYRIGHT AND LICENSE
121
122This software is copyright (c) 2021 by Ryan King <rking@panoptic.com>.
123
124This is free software; you can redistribute it and/or modify it under
125the same terms as the Perl 5 programming language system itself.
126
127=cut
128