diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-04-09 17:01:45 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-04-09 17:01:45 +0200 |
commit | 2d89c9d6aa0f2fcdd6403c4973f7e7005a6796a0 (patch) | |
tree | 1740bdeadd2cfb34f05d4f1f20f00f16b448592a /services.cxx | |
parent | 9d346aa8894e567d2871125826488c2ca181d0f5 (diff) |
Reimplement apache::service without using virtual functions
Diffstat (limited to 'services.cxx')
-rw-r--r-- | services.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/services.cxx b/services.cxx index 746aefa..2da5bca 100644 --- a/services.cxx +++ b/services.cxx @@ -11,7 +11,7 @@ using namespace brep; using web::apache::service; static const search search_mod; -service<search> AP_MODULE_DECLARE_DATA search_srv ("search", search_mod); +service AP_MODULE_DECLARE_DATA search_srv ("search", search_mod); static const view view_mod; -service<view> AP_MODULE_DECLARE_DATA view_srv ("view", view_mod); +service AP_MODULE_DECLARE_DATA view_srv ("view", view_mod); |