File: Version.pm

package info (click to toggle)
razor 1%3A2.85-11
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 848 kB
  • sloc: perl: 4,694; ansic: 178; makefile: 19; sh: 3
file content (20 lines) | stat: -rw-r--r-- 391 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/perl -sw
##
##
##
## Copyright (c) 2001, Vipul Ved Prakash.  All rights reserved.
## This code is free software; you can redistribute it and/or modify
## it under the same terms as Perl itself.
##
## $Id: Version.pm,v 1.45 2007/05/10 20:32:10 rsoderberg Exp $

package Razor2::Client::Version;
use strict;
use vars qw($PROTOCOL $VERSION);

$PROTOCOL = 3;

$VERSION = '2.84';

1;