lean2/src/frontend/pp.h
Leonardo de Moura a6f36ba546 Improve formatter usage. Fix bug in object printer.
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
2013-08-17 11:29:43 -07:00

16 lines
428 B
C++

/*
Copyright (c) 2013 Microsoft Corporation. All rights reserved.
Released under Apache 2.0 license as described in the file LICENSE.
Author: Leonardo de Moura
*/
#pragma once
#include "context.h"
#include "formatter.h"
#include "options.h"
namespace lean {
class frontend;
formatter mk_pp_formatter(frontend const & fe, options const & opts = options());
std::ostream & operator<<(std::ostream & out, frontend const & fe);
}