mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-17 14:16:10 -06:00
13 lines
268 B
C++
13 lines
268 B
C++
#include <CtrlLib/CtrlLib.h>
|
|
|
|
using namespace Upp;
|
|
|
|
GUI_APP_MAIN
|
|
{
|
|
if(AcceptFiles(Ctrl::Clipboard())) {
|
|
Vector<String> f = GetFiles(Ctrl::Clipboard());
|
|
for(int i = 0; i < f.GetCount(); i++)
|
|
LOG("#include \"lib/" + GetFileName(f[i]) + "\"");
|
|
}
|
|
}
|
|
|