oversion.hpp 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /*====================================================================*
  2. *
  3. * oversion.hpp - declarations of the oversion class.
  4. *
  5. * implement a standard means of program version identification;
  6. *
  7. * Motley Tools by Charles Maier <cmaier@cmassoc.net>;
  8. * Copyright 2001-2006 by Charles Maier Associates;
  9. * Licensed under the Internet Software Consortium License;
  10. *
  11. *--------------------------------------------------------------------*/
  12. #ifndef oVERSION_HEADER
  13. #define oVERSION_HEADER
  14. /*====================================================================*
  15. * custom header files;
  16. *--------------------------------------------------------------------*/
  17. #include "../classes/stdafx.hpp"
  18. /*====================================================================*
  19. * class constants;
  20. *--------------------------------------------------------------------*/
  21. #define COMPANY "Qualcomm Atheros, San Jose CA, USA"
  22. #define PROJECT "Qualcomm Atheros Powerline Toolkit"
  23. #define PACKAGE "plc-utils"
  24. #define VERSION "2.1.8"
  25. #define RELEASE "QCAOSR-1558-1"
  26. #define COMPILE __TIME__ " " __DATE__
  27. #define CONTACT "cmaier@qca.qualcomm.com"
  28. #define LICENSE "Clear BSD License"
  29. /*====================================================================*
  30. * class declaration;
  31. *--------------------------------------------------------------------*/
  32. class __declspec (dllexport) oversion
  33. {
  34. public:
  35. oversion ();
  36. virtual ~ oversion ();
  37. oversion & print ();
  38. private:
  39. };
  40. /*====================================================================*
  41. * end declaration;
  42. *--------------------------------------------------------------------*/
  43. #endif