# This file is part of the graph-includes package
#
# (c) 2005 Yann Dirson <ydirson@altern.org>
# Distributed under version 2 of the GNU GPL.

package graphincludes::node;
use strict;
use warnings;

# Objects keys of this class are intentionally not locked, since many
# attributes will be used for various purposes, and it probably makes
# no sense to make things more complicated.

sub new {
  my $class = shift;
  my $self = {};

  ($self->{LABEL}) = @_;

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

1;
