15c1c97873
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
16 lines
445 B
C++
16 lines
445 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;
|
|
std::shared_ptr<formatter> mk_pp_formatter(frontend const & fe, options const & opts = options());
|
|
std::ostream & operator<<(std::ostream & out, frontend const & fe);
|
|
}
|