The JUCE cross-platform C++ framework, with DISTRHO/KXStudio specific changes
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

54 lines
1.7KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE 6 technical preview.
  4. Copyright (c) 2017 - ROLI Ltd.
  5. You may use this code under the terms of the GPL v3
  6. (see www.gnu.org/licenses).
  7. For this technical preview, this file is not subject to commercial licensing.
  8. JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
  9. EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
  10. DISCLAIMED.
  11. ==============================================================================
  12. */
  13. /*******************************************************************************
  14. The block below describes the properties of this module, and is read by
  15. the Projucer to automatically generate project code that uses it.
  16. For details about the syntax and how to create or use a module, see the
  17. JUCE Module Format.txt file.
  18. BEGIN_JUCE_MODULE_DECLARATION
  19. ID: juce_analytics
  20. vendor: juce
  21. version: 6.0.0
  22. name: JUCE analytics classes
  23. description: Classes to collect analytics and send to destinations
  24. website: http://www.juce.com/juce
  25. license: GPL/Commercial
  26. dependencies: juce_gui_basics
  27. END_JUCE_MODULE_DECLARATION
  28. *******************************************************************************/
  29. #pragma once
  30. #define JUCE_ANALYTICS_H_INCLUDED
  31. #include <queue>
  32. #include <juce_gui_basics/juce_gui_basics.h>
  33. #include "destinations/juce_AnalyticsDestination.h"
  34. #include "destinations/juce_ThreadedAnalyticsDestination.h"
  35. #include "analytics/juce_Analytics.h"
  36. #include "analytics/juce_ButtonTracker.h"