sysversioninfo.inl 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /*
  2. * Copyright (c) 2007 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: Extended Version Info API provides extended version
  15. * information i.e. firmware, operator etc version information.
  16. *
  17. */
  18. // -----------------------------------------------------------------------------
  19. // SysVersionInfo::TVersionBase::TVersionBase
  20. // -----------------------------------------------------------------------------
  21. //
  22. inline SysVersionInfo::TVersionBase::TVersionBase( TInt aType ) :
  23. iType( aType )
  24. {
  25. }
  26. // -----------------------------------------------------------------------------
  27. // SysVersionInfo::TSymbianOSVersion::TSymbianOSVersion
  28. // -----------------------------------------------------------------------------
  29. //
  30. inline SysVersionInfo::TSymbianOSVersion::TSymbianOSVersion() :
  31. TVersionBase( SysVersionInfo::ESymbianOSVersion )
  32. {
  33. }
  34. // -----------------------------------------------------------------------------
  35. // SysVersionInfo::TProductVersion::TProductVersion
  36. // -----------------------------------------------------------------------------
  37. //
  38. inline SysVersionInfo::TProductVersion::TProductVersion() :
  39. TVersionBase( SysVersionInfo::EProductVersion )
  40. {
  41. }
  42. // End of File