Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/SynTree/Constant.h

    rbb9d8e8 r7e4b44db  
    1919#include <string>     // for string
    2020
    21 #include "BaseSyntaxNode.h"
    2221#include "Mutator.h"  // for Mutator
    2322#include "Visitor.h"  // for Visitor
    2423
     24#include "Common/Indenter.h"  // for Indenter
     25
    2526class Type;
    2627
    27 class Constant : public BaseSyntaxNode {
     28class Constant {
    2829  public:
    2930        Constant( Type * type, std::string rep, unsigned long long val );
    3031        Constant( Type * type, std::string rep, double val );
    3132        Constant( const Constant & other );
    32         virtual ~Constant();
    33 
     33       
    3434        virtual Constant * clone() const { return new Constant( *this ); }
    3535
Note: See TracChangeset for help on using the changeset viewer.