sysmodellibs/sysmodelgen/src/svg/DrawSvg.pl
changeset 1 b538b70cbe51
equal deleted inserted replaced
0:2e8eeb919028 1:b538b70cbe51
       
     1 #!perl
       
     2 # Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3 # All rights reserved.
       
     4 # This component and the accompanying materials are made available
       
     5 # under the terms of "Eclipse Public License v1.0"
       
     6 # which accompanies this distribution, and is available
       
     7 # at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 #
       
     9 # Initial Contributors:
       
    10 # Nokia Corporation - initial contribution.
       
    11 #
       
    12 # Contributors:
       
    13 #
       
    14 # Description:
       
    15 #
       
    16 
       
    17 use strict;
       
    18 use warnings;
       
    19 use FindBin;
       
    20 use lib $FindBin::Bin;
       
    21 use lib $FindBin::Bin."/svg";
       
    22 use lib $FindBin::Bin."/common";
       
    23 use lib $FindBin::Bin."/../common"; # needed to run from within DepToolkit
       
    24 
       
    25 use DrawSvg;
       
    26 
       
    27 my $drawer = new DrawSvg();
       
    28 $drawer->Draw();
       
    29 
       
    30 exit;