diff --git a/data/ArmarXGui/VariantInfo-ArmarXGui.xml b/data/ArmarXGui/VariantInfo-ArmarXGui.xml
index 06bf4094ac32d35a50d3b832dfae4e91c8fc5341..3fa809b8f94b22d162839184ce239ba4487f7924 100644
--- a/data/ArmarXGui/VariantInfo-ArmarXGui.xml
+++ b/data/ArmarXGui/VariantInfo-ArmarXGui.xml
@@ -19,13 +19,16 @@
             propertyName="MessageDisplayName"
             propertyIsOptional="true"
             propertyDefaultValue="MessageDisplayTopic" />
-        <Proxy include="ArmarXGui/interface/RemoteGuiInterface.h"
+    </Lib>
+    <Lib name="RemoteGui">
+        <Proxy include="ArmarXGui/libraries/RemoteGui/RemoteGui.h"
             humanName="Remote GUI Provider"
             typeName="RemoteGuiInterfacePrx"
             memberName="RemoteGui"
             getterName="getRemoteGui"
             propertyName="RemoteGuiName"
             propertyIsOptional="true" 
-            propertyDefaultValue="RemoteGuiProvider" />
+            propertyDefaultValue="RemoteGuiProvider">
+        </Proxy>
     </Lib>
 </VariantInfo>
diff --git a/source/ArmarXGui/libraries/RemoteGui/CMakeLists.txt b/source/ArmarXGui/libraries/RemoteGui/CMakeLists.txt
index e36112dc8ad174836c7cb9f88ce3ccbaa1b61d4b..3133b29c8ad6fac44441ad0a743bcfc605bc149b 100644
--- a/source/ArmarXGui/libraries/RemoteGui/CMakeLists.txt
+++ b/source/ArmarXGui/libraries/RemoteGui/CMakeLists.txt
@@ -31,6 +31,7 @@ set(SOURCES
 )
 
 set(HEADERS
+    RemoteGui.h
     WidgetHandler.h
     TypedWidget.h
     Widgets.h
diff --git a/source/ArmarXGui/libraries/RemoteGui/RemoteGui.h b/source/ArmarXGui/libraries/RemoteGui/RemoteGui.h
new file mode 100644
index 0000000000000000000000000000000000000000..e354477679e24c583b100c790e67908fe8b9a2ea
--- /dev/null
+++ b/source/ArmarXGui/libraries/RemoteGui/RemoteGui.h
@@ -0,0 +1,27 @@
+/*
+ * This file is part of ArmarX.
+ *
+ * Copyright (C) 2011-2017, High Performance Humanoid Technologies (H2T), Karlsruhe Institute of Technology (KIT), all rights reserved.
+ *
+ * ArmarX is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ *
+ * ArmarX is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ * @package    ArmarX
+ * @author     Mirko Waechter( mirko.waechter at kit dot edu)
+ * @date       2018
+ * @copyright  http://www.gnu.org/licenses/gpl-2.0.txt
+ *             GNU General Public License
+ */
+#pragma once
+
+#include "WidgetProxy.h"
+#include "WidgetBuilder.h"