16 lines
404 B
C++
16 lines
404 B
C++
/*
|
|
Copyright (c) 2016 Microsoft Corporation. All rights reserved.
|
|
Released under Apache 2.0 license as described in the file LICENSE.
|
|
|
|
Author: Leonardo de Moura
|
|
*/
|
|
#pragma once
|
|
#include "library/pos_info_provider.h"
|
|
namespace lean {
|
|
struct procedure {
|
|
name m_name;
|
|
expr m_code;
|
|
procedure(name const & n, expr const & code):
|
|
m_name(n), m_code(code) {}
|
|
};
|
|
}
|