Index: trunk/FACT++/src/LocalControl.cc
===================================================================
--- trunk/FACT++/src/LocalControl.cc	(revision 10869)
+++ 	(revision )
@@ -1,13 +1,0 @@
-#include "LocalControl.h"
-
-string LocalConsole::GetUpdatePrompt() const
-{
-    return GetLinePrompt()+" "
-        "\033[34m\033[1m"+fName+"\033[0m:"
-        "\033[32m\033[1m"+fStateMachine->GetStateName()+"\033[0m> ";
-}
-
-string LocalShell::GetUpdatePrompt() const
-{
-    return GetLinePrompt()+' '+fName+':'+fStateMachine->GetStateName()+"> ";
-}
Index: trunk/FACT++/src/LocalControl.h
===================================================================
--- trunk/FACT++/src/LocalControl.h	(revision 10869)
+++ trunk/FACT++/src/LocalControl.h	(revision 10870)
@@ -120,5 +120,10 @@
     }
 
-    string GetUpdatePrompt() const;
+    string GetUpdatePrompt() const
+    {
+        return GetLinePrompt()+" "
+            "\033[34m\033[1m"+fName+"\033[0m:"
+            "\033[32m\033[1m"+fStateMachine->GetStateName()+"\033[0m> ";
+    }
 };
 
@@ -142,5 +147,8 @@
         : LocalControl<Shell>(name) { }
 
-    string GetUpdatePrompt() const;
+    string GetUpdatePrompt() const
+    {
+        return GetLinePrompt()+' '+fName+':'+fStateMachine->GetStateName()+"> ";
+    }
 };
 
