1
0

fb2utils.h 295 B

1234567891011121314151617
  1. #ifndef FB2UTILS_H
  2. #define FB2UTILS_H
  3. #include <QIcon>
  4. #include <QString>
  5. #define FB2DELETE(p) { if ((p) != NULL) { delete (p); (p) = NULL; } }
  6. class FbIcon : public QIcon
  7. {
  8. public:
  9. explicit FbIcon(const QString &name);
  10. };
  11. QString jScript(const QString &filename);
  12. #endif // FB2UTILS_H