mirror of https://github.com/axmolengine/axmol.git
120 lines
1.8 KiB
JavaScript
120 lines
1.8 KiB
JavaScript
/**
|
|
* @module pluginx_flurry
|
|
*/
|
|
var plugin = plugin || {};
|
|
|
|
/**
|
|
* @class AnalyticsFlurry
|
|
*/
|
|
plugin.AnalyticsFlurry = {
|
|
|
|
/**
|
|
* @method setUserId
|
|
* @param {const char*}
|
|
*/
|
|
setUserId : function () {},
|
|
|
|
/**
|
|
* @method logError
|
|
* @param {const char*}
|
|
* @param {const char*}
|
|
*/
|
|
logError : function () {},
|
|
|
|
/**
|
|
* @method setCaptureUncaughtException
|
|
* @param {bool}
|
|
*/
|
|
setCaptureUncaughtException : function () {},
|
|
|
|
/**
|
|
* @method setGender
|
|
* @param {cocos2d::plugin::AnalyticsFlurry::Gender}
|
|
*/
|
|
setGender : function () {},
|
|
|
|
/**
|
|
* @method logPageView
|
|
*/
|
|
logPageView : function () {},
|
|
|
|
/**
|
|
* @method getPluginName
|
|
* @return A value converted from C/C++ "const char*"
|
|
*/
|
|
getPluginName : function () {},
|
|
|
|
/**
|
|
* @method setReportLocation
|
|
* @param {bool}
|
|
*/
|
|
setReportLocation : function () {},
|
|
|
|
/**
|
|
* @method getPluginVersion
|
|
* @return A value converted from C/C++ "const char*"
|
|
*/
|
|
getPluginVersion : function () {},
|
|
|
|
/**
|
|
* @method logEvent
|
|
* @param {const char*}
|
|
* @param {LogEventParamMap*}
|
|
*/
|
|
logEvent : function () {},
|
|
|
|
/**
|
|
* @method setSessionContinueMillis
|
|
* @param {long}
|
|
*/
|
|
setSessionContinueMillis : function () {},
|
|
|
|
/**
|
|
* @method setAge
|
|
* @param {int}
|
|
*/
|
|
setAge : function () {},
|
|
|
|
/**
|
|
* @method init
|
|
* @return A value converted from C/C++ "bool"
|
|
*/
|
|
init : function () {},
|
|
|
|
/**
|
|
* @method setVersionName
|
|
* @param {const char*}
|
|
*/
|
|
setVersionName : function () {},
|
|
|
|
/**
|
|
* @method startSession
|
|
* @param {const char*}
|
|
*/
|
|
startSession : function () {},
|
|
|
|
/**
|
|
* @method stopSession
|
|
*/
|
|
stopSession : function () {},
|
|
|
|
/**
|
|
* @method setUseHttps
|
|
* @param {bool}
|
|
*/
|
|
setUseHttps : function () {},
|
|
|
|
/**
|
|
* @method getSDKVersion
|
|
* @return A value converted from C/C++ "const char*"
|
|
*/
|
|
getSDKVersion : function () {},
|
|
|
|
/**
|
|
* @method setDebugMode
|
|
* @param {bool}
|
|
*/
|
|
setDebugMode : function () {},
|
|
|
|
};
|