summaryrefslogtreecommitdiffhomepage
path: root/plugins
diff options
context:
space:
mode:
authorRoland Reichwein <mail@reichwein.it>2023-01-04 15:25:40 +0100
committerRoland Reichwein <mail@reichwein.it>2023-01-04 15:25:40 +0100
commit5fb5b34f5c2f5d0a3210708c04779367b1072c32 (patch)
tree4c79a1cbb4c0f3b35db12b43c9262d7baf2a70be /plugins
parent14624e39aff9239d5f016af1c0553483c856555b (diff)
Adjust to new lib API
Diffstat (limited to 'plugins')
-rw-r--r--plugins/cgi/cgi.cpp1
-rw-r--r--plugins/static-files/static-files.cpp2
-rw-r--r--plugins/statistics/statistics.cpp1
-rw-r--r--plugins/webbox/webbox.cpp4
-rw-r--r--plugins/weblog/weblog.cpp2
5 files changed, 10 insertions, 0 deletions
diff --git a/plugins/cgi/cgi.cpp b/plugins/cgi/cgi.cpp
index 4e4f6c7..23c9bc4 100644
--- a/plugins/cgi/cgi.cpp
+++ b/plugins/cgi/cgi.cpp
@@ -16,6 +16,7 @@
using namespace std::string_literals;
namespace bp = boost::process;
namespace fs = std::filesystem;
+using namespace Reichwein::Mime;
namespace {
diff --git a/plugins/static-files/static-files.cpp b/plugins/static-files/static-files.cpp
index e889bc5..4dd8499 100644
--- a/plugins/static-files/static-files.cpp
+++ b/plugins/static-files/static-files.cpp
@@ -12,6 +12,8 @@
using namespace std::string_literals;
namespace fs = std::filesystem;
+using namespace Reichwein::Mime;
+using namespace Reichwein::URL;
namespace {
diff --git a/plugins/statistics/statistics.cpp b/plugins/statistics/statistics.cpp
index 54450a8..959fd33 100644
--- a/plugins/statistics/statistics.cpp
+++ b/plugins/statistics/statistics.cpp
@@ -18,6 +18,7 @@
using namespace std::string_literals;
namespace bp = boost::process;
namespace fs = std::filesystem;
+using namespace Reichwein;
namespace {
diff --git a/plugins/webbox/webbox.cpp b/plugins/webbox/webbox.cpp
index 90975b5..df7e946 100644
--- a/plugins/webbox/webbox.cpp
+++ b/plugins/webbox/webbox.cpp
@@ -27,6 +27,10 @@
using namespace std::string_literals;
namespace fs = std::filesystem;
namespace pt = boost::property_tree;
+using namespace Reichwein::Mime;
+using namespace Reichwein::Stringutil;
+using namespace Reichwein::URL;
+using namespace Reichwein;
namespace {
diff --git a/plugins/weblog/weblog.cpp b/plugins/weblog/weblog.cpp
index 8be5b40..1aea2f4 100644
--- a/plugins/weblog/weblog.cpp
+++ b/plugins/weblog/weblog.cpp
@@ -18,6 +18,8 @@
using namespace std::string_literals;
namespace fs = std::filesystem;
namespace pt = boost::property_tree;
+using namespace Reichwein::Mime;
+using namespace Reichwein::Stringutil;
namespace {