File: Version.pm

package info (click to toggle)
razor 2.670-1sarge2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 524 kB
  • ctags: 187
  • sloc: perl: 4,604; ansic: 139; makefile: 63; sh: 7
file content (20 lines) | stat: -rw-r--r-- 387 bytes parent folder | download
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.26 2004/12/02 23:27:31 vipul Exp $

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

$PROTOCOL = 3; 

$VERSION = '2.67';

1;