mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 14:16:09 -06:00
23 lines
350 B
C++
23 lines
350 B
C++
#include "ide.h"
|
|
|
|
Vector<String> GetAllUses(const char *path)
|
|
{
|
|
Index<String> upp;
|
|
return upp.PickKeys();
|
|
/* for(FindFile ff(ConfigFile("*.var")); ff; ff.Next())
|
|
if(ff.IsFile()) {
|
|
|
|
}
|
|
varlist.Add(GetFileTitle(ff.GetName()));*/
|
|
|
|
}
|
|
|
|
void CopyPackage(const char *path)
|
|
{
|
|
|
|
}
|
|
|
|
void RenamePackage(const char *path)
|
|
{
|
|
|
|
}
|