view ir/irsymbol.h @ 1443:b6aa03164436

Fix "garbage at end of line" errors on mingw...shouldn't affect linux/macosx
author Kelly Wilson <wilsonk cpsc.ucalgary.ca>
date Sun, 31 May 2009 09:10:33 -0600
parents 46f6365a50d7
children
line wrap: on
line source

#ifndef __LDC_IR_IRSYMBOL_H__
#define __LDC_IR_IRSYMBOL_H__

#include "ir/ir.h"

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

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

protected:
    ///
    Ir* ir;
};

#endif