Index: trunk/jenga/include/common/CmdLine.h
===================================================================
--- trunk/jenga/include/common/CmdLine.h	(revision 289)
+++ trunk/jenga/include/common/CmdLine.h	(revision 289)
@@ -0,0 +1,37 @@
+#include <vector>
+#include <string>
+
+
+namespace Jenga{
+namespace Common{
+
+
+class CmdLine{
+	std::string command;
+	std::string parameter;
+public:
+
+	CmdLine( const std::string &command, const std::string &parameter )
+		: command( command )
+		, parameter( parameter )
+	{
+	}
+
+	const std::string& GetCommand() const
+	{
+		return command;
+	}
+	const std::string& GetParameter() const
+	{
+		return parameter;
+	}
+};
+
+class CmdLines : public std::vector<CmdLine>
+{
+public:
+	CmdLines( const std::string &strCmdLine );
+};
+
+
+}}
