From 9d346aa8894e567d2871125826488c2ca181d0f5 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 9 Apr 2015 15:44:57 +0200 Subject: Further interface prototyping --- services.cxx | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 services.cxx (limited to 'services.cxx') diff --git a/services.cxx b/services.cxx new file mode 100644 index 0000000..746aefa --- /dev/null +++ b/services.cxx @@ -0,0 +1,17 @@ +// file : services.cxx -*- C++ -*- +// copyright : Copyright (c) 2014-2015 Code Synthesis Tools CC +// license : MIT; see accompanying LICENSE file + +#include + +#include +#include + +using namespace brep; +using web::apache::service; + +static const search search_mod; +service AP_MODULE_DECLARE_DATA search_srv ("search", search_mod); + +static const view view_mod; +service AP_MODULE_DECLARE_DATA view_srv ("view", view_mod); -- cgit v1.1