summaryrefslogtreecommitdiff
path: root/src/scope.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/scope.h')
-rw-r--r--src/scope.h39
1 files changed, 0 insertions, 39 deletions
diff --git a/src/scope.h b/src/scope.h
index c2c9df20..cd7d93c7 100644
--- a/src/scope.h
+++ b/src/scope.h
@@ -38,10 +38,6 @@
* @author John Wiegley
*
* @ingroup expr
- *
- * @brief Brief
- *
- * Long.
*/
#ifndef _SCOPE_H
#define _SCOPE_H
@@ -50,11 +46,6 @@
namespace ledger {
-/**
- * @brief Brief
- *
- * Long.
- */
struct symbol_t
{
enum kind_t {
@@ -105,11 +96,6 @@ private:
#endif // HAVE_BOOST_SERIALIZATION
};
-/**
- * @brief Brief
- *
- * Long.
- */
class scope_t
{
public:
@@ -138,11 +124,6 @@ private:
#endif // HAVE_BOOST_SERIALIZATION
};
-/**
- * @brief Brief
- *
- * Long.
- */
class child_scope_t : public noncopyable, public scope_t
{
public:
@@ -186,11 +167,6 @@ private:
#endif // HAVE_BOOST_SERIALIZATION
};
-/**
- * @brief Brief
- *
- * Long.
- */
class symbol_scope_t : public child_scope_t
{
typedef std::map<symbol_t, expr_t::ptr_op_t> symbol_map;
@@ -228,11 +204,6 @@ private:
#endif // HAVE_BOOST_SERIALIZATION
};
-/**
- * @brief Brief
- *
- * Long.
- */
class call_scope_t : public child_scope_t
{
value_t args;
@@ -301,11 +272,6 @@ private:
#endif // HAVE_BOOST_SERIALIZATION
};
-/**
- * @brief Brief
- *
- * Long.
- */
class bind_scope_t : public child_scope_t
{
bind_scope_t();
@@ -349,11 +315,6 @@ private:
#endif // HAVE_BOOST_SERIALIZATION
};
-/**
- * @brief Brief
- *
- * Long.
- */
template <typename T>
T * search_scope(scope_t * ptr)
{