providermanager.h | providermanager.h | |||
---|---|---|---|---|
skipping to change at line 62 | skipping to change at line 62 | |||
class ATTICA_EXPORT ProviderManager : public QObject | class ATTICA_EXPORT ProviderManager : public QObject | |||
{ | { | |||
Q_OBJECT | Q_OBJECT | |||
public: | public: | |||
enum ProviderFlag { | enum ProviderFlag { | |||
NoFlags = 0x0, | NoFlags = 0x0, | |||
DisablePlugins = 0x1 | DisablePlugins = 0x1 | |||
}; | }; | |||
Q_DECLARE_FLAGS(ProviderFlags, ProviderFlag); | Q_DECLARE_FLAGS(ProviderFlags, ProviderFlag) | |||
ProviderManager(const ProviderFlags& flags = NoFlags); | ProviderManager(const ProviderFlags& flags = NoFlags); | |||
~ProviderManager(); | ~ProviderManager(); | |||
/** | /** | |||
* Load available providers from configuration | * Load available providers from configuration | |||
*/ | */ | |||
void loadDefaultProviders(); | void loadDefaultProviders(); | |||
/** | /** | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||
version.h | version.h | |||
---|---|---|---|---|
skipping to change at line 27 | skipping to change at line 27 | |||
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
* Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#ifndef _ATTICA_VERSION_H_ | #ifndef _ATTICA_VERSION_H_ | |||
#define _ATTICA_VERSION_H_ | #define _ATTICA_VERSION_H_ | |||
#include "atticaclient_export.h" | #include "atticaclient_export.h" | |||
/// @brief Attica version as string at compile time. | /// @brief Attica version as string at compile time. | |||
#define LIBATTICA_VERSION_STRING "0.4.0" | #define LIBATTICA_VERSION_STRING "0.4.1" | |||
/// @brief The major Attica version number at compile time | /// @brief The major Attica version number at compile time | |||
#define LIBATTICA_VERSION_MAJOR 0 | #define LIBATTICA_VERSION_MAJOR 0 | |||
/// @brief The minor Attica version number at compile time | /// @brief The minor Attica version number at compile time | |||
#define LIBATTICA_VERSION_MINOR 4 | #define LIBATTICA_VERSION_MINOR 4 | |||
/// @brief The Attica release version number at compile time | /// @brief The Attica release version number at compile time | |||
#define LIBATTICA_VERSION_RELEASE | #define LIBATTICA_VERSION_RELEASE | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||