summaryrefslogtreecommitdiff
path: root/src/core/hw/y2r.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2016-12-10 07:51:50 -0500
committerlinkmauve <linkmauve@linkmauve.fr>2016-12-11 00:07:27 +0000
commit963aedd8ccc207d5b65b97bd46b930771f2bda6e (patch)
treeab238398e6f8a37e4cd105d19dcec54f82ec1bb2 /src/core/hw/y2r.h
parenta2d474386c5e25346f68f4b5b8e1ce6da3b452ce (diff)
Add all services to the Service namespace
Previously there was a split where some of the services were in the Service namespace and others were not.
Diffstat (limited to 'src/core/hw/y2r.h')
-rw-r--r--src/core/hw/y2r.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/core/hw/y2r.h b/src/core/hw/y2r.h
index 6b6e71bec..25fcd781c 100644
--- a/src/core/hw/y2r.h
+++ b/src/core/hw/y2r.h
@@ -2,13 +2,16 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
-namespace Y2R_U {
+#pragma once
+
+namespace Service {
+namespace Y2R {
struct ConversionConfiguration;
}
+}
namespace HW {
namespace Y2R {
-
-void PerformConversion(Y2R_U::ConversionConfiguration& cvt);
+void PerformConversion(Service::Y2R::ConversionConfiguration& cvt);
}
}