2013-08-08 02:10:12 +00:00
|
|
|
/*
|
|
|
|
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
|
2013-08-17 00:11:24 +00:00
|
|
|
#include "context.h"
|
2013-08-17 03:39:24 +00:00
|
|
|
#include "formatter.h"
|
|
|
|
#include "options.h"
|
2013-08-08 02:10:12 +00:00
|
|
|
|
|
|
|
namespace lean {
|
2013-08-17 00:11:24 +00:00
|
|
|
class frontend;
|
2013-08-17 03:39:24 +00:00
|
|
|
std::shared_ptr<formatter> mk_pp_formatter(frontend const & fe, options const & opts = options());
|
|
|
|
std::ostream & operator<<(std::ostream & out, frontend const & fe);
|
2013-08-08 02:10:12 +00:00
|
|
|
}
|