git-svn-id: svn://db.shs.com.ru/pip@90 12ceb7fc-bf1f-11e4-8940-5bc7170c53b5
18 lines
363 B
C++
18 lines
363 B
C++
#ifndef SHARED_H
|
|
#define SHARED_H
|
|
|
|
#include "pidir.h"
|
|
#include "piscreen.h"
|
|
#include "piscreentiles.h"
|
|
|
|
using namespace PIScreenTypes;
|
|
|
|
PIString readableTime(const PITime & t);
|
|
|
|
PIString askNewDir();
|
|
bool askQuestion(const PIString & t);
|
|
void showInfo(const PIString & t);
|
|
void removeFiles(const PIDir & dir, PIStringList l);
|
|
|
|
#endif // SHARED_H
|