diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-04-14 15:43:15 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-04-14 15:43:15 +0200 |
commit | 2b4193a368e4be2db2ed0c51368e903890208067 (patch) | |
tree | 914a348198fc238939c112ae431e208aea96a1dd | |
parent | d1b60704e8607070086e4c23314badc624ce1a86 (diff) |
Bring in commonly used names from web:: to brep::
-rw-r--r-- | brep/module | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/brep/module b/brep/module index 1803ee8..dfcf7ad 100644 --- a/brep/module +++ b/brep/module @@ -58,6 +58,19 @@ namespace brep // Adaptation of the web::module to our needs. // + + // Bring in commonly used names from the web namespace. + // + // @@ Maybe doing using namespace is the right way to handle this. + // There will, however, most likely be a conflict between + // web::module and our module. Or maybe not, need to try. + // + using status_code; + using name_value; + using name_values; + using request; + using response; + class module: public web::module { public: |