summaryrefslogtreecommitdiff
path: root/src/scope.h
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2009-11-09 13:25:45 -0500
committerJohn Wiegley <johnw@newartisans.com>2009-11-09 13:25:45 -0500
commit865c0ff828f88ed1d00eea73a3fc55b3e57d21b3 (patch)
tree5acdfae32811b25fb46271bf349a216bea41fddb /src/scope.h
parent55c7792c9329f97dd19fc5aeca466cb2de4fbf9c (diff)
parent9b396b41220646cf73fcd2a8afebcee06dde2a29 (diff)
downloadfork-ledger-865c0ff828f88ed1d00eea73a3fc55b3e57d21b3.tar.gz
fork-ledger-865c0ff828f88ed1d00eea73a3fc55b3e57d21b3.tar.bz2
fork-ledger-865c0ff828f88ed1d00eea73a3fc55b3e57d21b3.zip
Merge branch 'next'
Diffstat (limited to 'src/scope.h')
-rw-r--r--src/scope.h42
1 files changed, 2 insertions, 40 deletions
diff --git a/src/scope.h b/src/scope.h
index c2c9df20..44ca3229 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 {
@@ -63,7 +54,8 @@ struct symbol_t
OPTION,
PRECOMMAND,
COMMAND,
- DIRECTIVE
+ DIRECTIVE,
+ FORMAT
};
kind_t kind;
@@ -105,11 +97,6 @@ private:
#endif // HAVE_BOOST_SERIALIZATION
};
-/**
- * @brief Brief
- *
- * Long.
- */
class scope_t
{
public:
@@ -138,11 +125,6 @@ private:
#endif // HAVE_BOOST_SERIALIZATION
};
-/**
- * @brief Brief
- *
- * Long.
- */
class child_scope_t : public noncopyable, public scope_t
{
public:
@@ -186,11 +168,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 +205,6 @@ private:
#endif // HAVE_BOOST_SERIALIZATION
};
-/**
- * @brief Brief
- *
- * Long.
- */
class call_scope_t : public child_scope_t
{
value_t args;
@@ -301,11 +273,6 @@ private:
#endif // HAVE_BOOST_SERIALIZATION
};
-/**
- * @brief Brief
- *
- * Long.
- */
class bind_scope_t : public child_scope_t
{
bind_scope_t();
@@ -349,11 +316,6 @@ private:
#endif // HAVE_BOOST_SERIALIZATION
};
-/**
- * @brief Brief
- *
- * Long.
- */
template <typename T>
T * search_scope(scope_t * ptr)
{