summaryrefslogtreecommitdiff
path: root/samwise/PerlSam/Generator/View.pm
blob: 8f7361d771cf2aaf5891224894ef345876f25644 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# $Id$

package PerlSam::Generator::View;

use Data::Dumper;
use strict;

###############################################################################
# Constructor

sub new (@)
{
    my $proto = shift;
    my $class = ref ($proto) || $proto;
    my $self = {};

    bless ($self, $class);
    return $self;
}

###############################################################################
# Methods

sub GenerateWorkspace (\%)
{
    my $self = shift;
    my $data = shift;

    print "-----Workspace\n";
    print Dumper ($data->{WORKSPACE});
}

sub GenerateProjects (\%)
{
    my $self = shift;
    my $data = shift;

    print "-----Projects\n";
    print Dumper ($data->{PROJECTS});
}

1;