blob: e8829c5f4fe156d1863cc9068d1c5b6735044f7c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/*
* original code from global1.cpp Copyright by trolltech
* GPLv2 only zecke@handhelds.org
*
*/
#define private protected
#include <qtopia/global.h>
#undef private
namespace Opie {
struct Global : public ::Global{
static bool isAppLnkFileName( const QString& str );
static QString tempDir();
static Command* builtinCommands();
static QGuardedPtr<QWidget>* builtinRunning();
static QString uuid();
static QByteArray encodeBase64(const QByteArray& data );
};
}
|