/usr/include/juffed/Utils.h is in juffed-dev 0.10-85-g5ba17f9-17.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | #ifndef __JUFFED_UTILS_H__
#define __JUFFED_UTILS_H__
#include "CommandStorageInt.h"
#include "IconManagerInt.h"
#include "LibConfig.h"
namespace Juff {
class LIBJUFF_EXPORT Utils {
public:
static CommandStorageInt* commandStorage();
static IconManagerInt* iconManager();
private:
static CommandStorageInt* commandStorage_;
static IconManagerInt* iconManager_;
};
} // namespace Juff
#endif // __JUFFED_UTILS_H__
|