open source

This commit is contained in:
lvfulong
2020-11-11 16:17:13 +08:00
parent 4d989f3ecb
commit bc4ca748de
2441 changed files with 623057 additions and 2 deletions
@@ -0,0 +1,39 @@
/**
@file JSHistory.h
@brief
@author James
@version 1.0
@date 2017_11_28
*/
#ifndef __JSHistory_H__
#define __JSHistory_H__
#include <JSObjBase.h>
#include "../JSInterface/JSInterface.h"
namespace laya
{
class JSHistory :public JsObjBase, public JSObjNode
{
public:
static JsObjClassInfo JSCLSINFO;
void exportJS();
public:
int getLength();
void back();
void forward();
void go(int step);
void push(char* strUrl);
};
}
//------------------------------------------------------------------------------
#endif //__JSHistory_H__
//-----------------------------END FILE--------------------------------