Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_34_1/tools/jam/src/modules.h @ 29

Last change on this file since 29 was 29, checked in by landauf, 17 years ago

updated boost from 1_33_1 to 1_34_1

File size: 898 bytes
Line 
1/*
2 *  Copyright 2001-2004 David Abrahams.
3 *  Distributed under the Boost Software License, Version 1.0.
4 *  (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
5 */
6#ifndef MODULES_DWA10182001_H
7# define MODULES_DWA10182001_H
8
9#include "lists.h"
10
11struct module_t
12{
13    char* name;
14    struct hash* rules;
15    struct hash* variables;
16    struct hash* imported_modules;
17    struct module_t* class_module;
18    struct hash* native_rules;
19    int user_module;
20};
21
22typedef struct module_t module_t ; /* MSVC debugger gets confused unless this is provided */
23
24module_t* bindmodule( char* name );
25module_t* root_module();
26void enter_module( module_t* );
27void exit_module( module_t* );
28void delete_module( module_t* );
29
30void import_module(LIST* module_names, module_t* target_module);
31LIST* imported_modules(module_t* module);
32
33struct hash* demand_rules( module_t* );
34
35
36#endif
37
Note: See TracBrowser for help on using the repository browser.