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-09-13 03:04:10 +00:00
|
|
|
#include "util/sexpr/options.h"
|
|
|
|
#include "kernel/context.h"
|
2013-10-01 01:16:13 +00:00
|
|
|
#include "kernel/formatter.h"
|
2013-08-08 02:10:12 +00:00
|
|
|
|
|
|
|
namespace lean {
|
2013-08-17 00:11:24 +00:00
|
|
|
class frontend;
|
2013-12-09 00:42:12 +00:00
|
|
|
class environment;
|
2013-12-13 00:33:31 +00:00
|
|
|
formatter mk_pp_formatter(ro_environment const & env);
|
2013-08-17 03:39:24 +00:00
|
|
|
std::ostream & operator<<(std::ostream & out, frontend const & fe);
|
2013-08-08 02:10:12 +00:00
|
|
|
}
|