view trunk/src/dil/ast/BaseClass.d @ 606:e98d659f1c29

Moved class BaseClass to module dil.ast.BaseClass.
author Aziz K?ksal <aziz.koeksal@gmail.com>
date Sun, 06 Jan 2008 01:19:29 +0100
parents
children
line wrap: on
line source

/++
  Author: Aziz Köksal
  License: GPL3
+/
module dil.ast.BaseClass;

import dil.ast.Node;
import dil.ast.Types;
import dil.Enums;

class BaseClass : Node
{
  Protection prot;
  TypeNode type;
  this(Protection prot, TypeNode type)
  {
    super(NodeCategory.Other);
    mixin(set_kind);
    addChild(type);
    this.prot = prot;
    this.type = type;
  }
}