#include <zypp/base/LogControl.h>
#include <zypp/base/LogTools.h>
+#include <zypp/base/IOStream.h>
//#include <zypp/base/Algorithm.h>
#include <zypp/SourceFactory.h>
#include <zypp/Source.h>
///////////////////////////////////////////////////////////////////
+inline void prompt( const string & text_r = string() )
+{ cout << '[' << text_r << "] > " << flush; }
+
+inline string getcmd( const string & text_r = string() )
+{ prompt( text_r ); return iostr::getline( cin ); }
+
/******************************************************************
**
** FUNCTION NAME : main
--argc;
++argv;
- cout << "x" << endl;
+ MIL << getcmd() << endl;
+ MIL << getcmd("a") << endl;
+
INT << "===[END]============================================" << endl << endl;