view ir/irsymbol.h @ 1173:b0f9652f31de

Forgot to commit this file, sorry
author Frits van Bommel <fvbommel wxs.nl>
date Sun, 29 Mar 2009 18:50:41 +0200
parents 2a687353c84d
children 46f6365a50d7
line wrap: on
line source

#ifndef __LDC_IR_IRSYMBOL_H__
#define __LDC_IR_IRSYMBOL_H__

#include "ir/ir.h"

/// Base class for all symbols.
struct IrSymbol
{
    ///
    IrSymbol(Ir* ir) : ir(ir) {}

    /// Migrate symbols to current module if necessary.
    virtual void migrate() = 0;

protected:
    ///
    Ir* ir;
};

#endif