nfcsettings_p.cpp 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /*
  2. * Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
  3. * All rights reserved.
  4. * This component and the accompanying materials are made available
  5. * under the terms of "Eclipse Public License v1.0"
  6. * which accompanies this distribution, and is available
  7. * at the URL "http://www.eclipse.org/legal/epl-v10.html".
  8. *
  9. * Initial Contributors:
  10. * Nokia Corporation - initial contribution.
  11. *
  12. * Contributors:
  13. *
  14. * Description: Part of Qt NFC Setting sample application.
  15. */
  16. #include "nfcsettings_p.h"
  17. NfcSettingsPrivate::NfcSettingsPrivate(NfcSettings *q) :
  18. QObject(0),
  19. q_ptr(q)
  20. {
  21. // Empty implementation.
  22. }
  23. NfcSettingsPrivate::~NfcSettingsPrivate()
  24. {
  25. // Empty implementation.
  26. }
  27. NfcSettings::NfcFeature NfcSettingsPrivate::nfcFeature() const
  28. {
  29. return NfcSettings::NfcFeatureNotSupported;
  30. }
  31. NfcSettings::NfcMode NfcSettingsPrivate::nfcMode() const
  32. {
  33. return NfcSettings::NfcModeNotSupported;
  34. }
  35. NfcSettings::NfcError NfcSettingsPrivate::nfcError() const
  36. {
  37. return NfcSettings::NfcErrorNone;
  38. }
  39. void NfcSettingsPrivate::reset()
  40. {
  41. // Empty implementation.
  42. }