File: Utils.h

package info (click to toggle)
juffed 0.10-89-g3690b60-5
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 4,132 kB
  • sloc: cpp: 21,060; ansic: 446; xml: 329; sh: 68; makefile: 20
file content (22 lines) | stat: -rw-r--r-- 423 bytes parent folder | download | duplicates (5)
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__