Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 4655 in orxonox.OLD for orxonox/trunk/scripts/orxodox.checkFiles.pl


Ignore:
Timestamp:
Jun 18, 2005, 6:57:55 PM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: removed some unnecessary stuff

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/scripts/orxodox.checkFiles.pl

    r4462 r4655  
    11#!/usr/bin/perl
    2 ########################################################################## 
    3 #   orxonox - the future of 3D-vertical-scrollers                        #
    4 #                                                                        #
    5 #   Copyright (C) 2004 orx                                              #
    6 #                                                                        #
     2##########################################################################
     3#   orxonox - the future of 3D-vertical-scrollers                        #
     4#                                                                        #
     5#   Copyright (C) 2004 orx                                              #
     6#                                                                        #
    77#   This program is free software; you can redistribute it and/or modify #
    88#   it under the terms of the GNU General Public License as published by #
    99#   the Free Software Foundation; either version 2, or (at your option)  #
    10 #   any later version.                                                  #
    11 #                                                                        #
    12 #   ### File Specific:                                                  #
    13 #   main-programmer: Benjamin Grauer                                    #
    14 #   co-programmer: ...                                                  #
    15 #                                                                        #
     10#   any later version.                                                  #
     11#                                                                        #
     12#   ### File Specific:                                                  #
     13#   main-programmer: Benjamin Grauer                                    #
     14#   co-programmer: ...                                                  #
     15#                                                                        #
    1616#   This Script is for parsing single or multiple files for their        #
    1717#   doxygeb-tags, and outputs the warnings and errors, but prehibits     #
     
    4444    if (-e $inputFile)
    4545      {
    46         $processFiles = "$processFiles $inputFile";
    47         $numberOfFiles++;
    48         print "found .h ";
     46        $processFiles = "$processFiles $inputFile";
     47        $numberOfFiles++;
     48        print "found .h ";
    4949      }
    5050    $inputFile =~ s/\.h$/\.cc/;
    5151    if (-e $inputFile)
    5252      {
    53         $processFiles = "$processFiles $inputFile";
    54         $numberOfFiles++;
    55         print "...found .cc ";
     53        $processFiles = "$processFiles $inputFile";
     54        $numberOfFiles++;
     55        print "...found .cc ";
    5656      }
    5757    if ($tmpNumber == $numberOfFiles) {print "no matching files found";}
Note: See TracChangeset for help on using the changeset viewer.