ctkServiceReference.cxx 536 B

123456789101112131415161718192021222324252627282930313233
  1. #include "ctkServiceReference.h"
  2. #include <QStringList>
  3. namespace ctk {
  4. QVariant ServiceReference::getProperty(const QString& key) const
  5. {
  6. return QVariant();
  7. }
  8. QStringList ServiceReference::getPropertyKeys() const
  9. {
  10. return QStringList();
  11. }
  12. Plugin* ServiceReference::getPlugin() const
  13. {
  14. return 0;
  15. }
  16. QList<Plugin*> ServiceReference::getUsingPlugins() const
  17. {
  18. return QList<Plugin*>();
  19. }
  20. bool ServiceReference::operator<(const ServiceReference& reference) const
  21. {
  22. return false;
  23. }
  24. }