|
- /*
- ==============================================================================
-
- This file is part of the JUCE library.
- Copyright (c) 2017 - ROLI Ltd.
-
- JUCE is an open source library subject to commercial or open-source
- licensing.
-
- The code included in this file is provided under the terms of the ISC license
- http://www.isc.org/downloads/software-support-policy/isc-license. Permission
- To use, copy, modify, and/or distribute this software for any purpose with or
- without fee is hereby granted provided that the above copyright notice and
- this permission notice appear in all copies.
-
- JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
- EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
- DISCLAIMED.
-
- ==============================================================================
- */
-
- /*******************************************************************************
- The block below describes the properties of this module, and is read by
- the Projucer to automatically generate project code that uses it.
- For details about the syntax and how to create or use a module, see the
- JUCE Module Format.txt file.
-
-
- BEGIN_JUCE_MODULE_DECLARATION
-
- ID: juce_analytics
- vendor: juce
- version: 5.2.0
- name: JUCE analytics classes
- description: Classes to collect analytics and send to destinations
- website: http://www.juce.com/juce
- license: GPL/Commercial
-
- dependencies: juce_gui_basics
-
- END_JUCE_MODULE_DECLARATION
-
- *******************************************************************************/
-
-
- #pragma once
- #define JUCE_ANALYTICS_H_INCLUDED
-
- #include <queue>
- #include <juce_gui_basics/juce_gui_basics.h>
-
- #include "destinations/juce_AnalyticsDestination.h"
- #include "destinations/juce_ThreadedAnalyticsDestination.h"
- #include "analytics/juce_Analytics.h"
- #include "analytics/juce_ButtonTracker.h"
|