home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / qt3_emx.zip / include / qremotefactory.h < prev    next >
C/C++ Source or Header  |  2001-10-04  |  378b  |  25 lines

  1. #ifndef QREMOTEFACTORY_H
  2. #define QREMOTEFACTORY_H
  3.  
  4. #ifndef QT_H
  5. #include "qstringlist.h"
  6. #endif // QT_H
  7.  
  8. #ifndef QT_NO_REMOTE
  9.  
  10. class QString;
  11. class QRemoteInterface;
  12.  
  13. class Q_EXPORT QRemoteFactory
  14. {
  15. public:
  16. #ifndef QT_NO_STRINGLIST
  17.     static QStringList keys();
  18. #endif
  19.     static QRemoteInterface *create( const QString& );
  20. };
  21.  
  22. #endif //QT_NO_REMOTE
  23.  
  24. #endif //QREMOTEFACTORY_H
  25.