boost.png (6897 bytes) Home Libraries People FAQ More

PrevUpHomeNext

Class inner_scope

boost::stacktrack::inner_scope — Scopes derived from inner_scope hook to an existing outer_scope.

Synopsis

#include <boost/stacktrack/scope.hpp>

using namespace boost::stacktrack;

class inner_scope :  boost::stacktrack::scope_base {
public:
  // construct/copy/destruct
  inner_scope(outer_scope &, SCOPE_STYLE, const char *, const sourceloc &);

  // protected member functions
};

Description

requires explicit reference to another scope

inner_scope construct/copy/destruct

  1. inner_scope(outer_scope & outer, SCOPE_STYLE style, const char * purpose, 
                const sourceloc & location);

    Parameters

    location

    location of scope in source code

    outer

    outer instance of scope which this scope nests inside

    purpose

    user-defined tag for scope

    style

    mode of operation for scope

inner_scope protected member functions

    Copyright © 2005 James Fowler

    PrevUpHomeNext