blob: d2218087042392bb2319d35f2c00f927689a7eee [file] [log] [blame]
Jeff Thompsonef2d5a42013-08-22 19:09:24 -07001// (C) Copyright Gennadiy Rozental 2005-2008.
2// Use, modification, and distribution are subject to the
3// Boost Software License, Version 1.0. (See accompanying file
4// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5
6// See http://www.boost.org/libs/test for the library home page.
7//
8// File : $RCSfile$
9//
10// Version : $Revision: 49312 $
11//
12// Description : cla subsystem forward declarations
13// ***************************************************************************
14
Jeff Thompson3d613fd2013-10-15 15:39:04 -070015#ifndef NDNBOOST_RT_CLA_FWD_HPP_062604GER
16#define NDNBOOST_RT_CLA_FWD_HPP_062604GER
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070017
18// Boost.Runtime.Parameter
19#include <ndnboost/test/utils/runtime/config.hpp>
20
21// Boost
22#include <ndnboost/shared_ptr.hpp>
23
24namespace ndnboost {
25
Jeff Thompson3d613fd2013-10-15 15:39:04 -070026namespace NDNBOOST_RT_PARAM_NAMESPACE {
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070027
28namespace cla {
29
30class parser;
31class parameter;
32typedef shared_ptr<parameter> parameter_ptr;
33class naming_policy;
34typedef shared_ptr<naming_policy> naming_policy_ptr;
35class argv_traverser;
36
37namespace rt_cla_detail {
38
39template<typename T> class const_generator;
40template<typename T> class ref_generator;
41
42template<typename T> class assigner;
43
44class named_parameter_base;
45class positional_parameter_base;
46
47} // namespace rt_cla_detail
48
49} // namespace cla
50
Jeff Thompson3d613fd2013-10-15 15:39:04 -070051} // namespace NDNBOOST_RT_PARAM_NAMESPACE
Jeff Thompsonef2d5a42013-08-22 19:09:24 -070052
53} // namespace ndnboost
54
Jeff Thompson3d613fd2013-10-15 15:39:04 -070055#endif // NDNBOOST_RT_CLA_FWD_HPP_062604GER