2014-07-04 21:25:44 +00:00
|
|
|
/*
|
|
|
|
Copyright (c) 2014 Microsoft Corporation. All rights reserved.
|
|
|
|
Released under Apache 2.0 license as described in the file LICENSE.
|
|
|
|
|
|
|
|
Author: Leonardo de Moura
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "util/name.h"
|
|
|
|
#include "util/list.h"
|
|
|
|
#include "kernel/environment.h"
|
|
|
|
#include "frontends/lean/cmd_table.h"
|
|
|
|
|
|
|
|
namespace lean {
|
|
|
|
/** \brief Add a new 'class instance' to the environment. */
|
|
|
|
environment add_instance(environment const & env, name const & n);
|
2014-07-05 01:49:05 +00:00
|
|
|
/** \brief Return true iff \c c was declared with \c add_class . */
|
|
|
|
bool is_class(environment const & env, name const & c);
|
2014-07-04 21:25:44 +00:00
|
|
|
/** \brief Return the instances of the given class. */
|
|
|
|
list<name> get_class_instances(environment const & env, name const & c);
|
2014-07-08 21:28:33 +00:00
|
|
|
name get_class_name(environment const & env, expr const & e);
|
2014-07-04 21:25:44 +00:00
|
|
|
void register_class_cmds(cmd_table & r);
|
|
|
|
}
|