12345678910111213141516171819202122232425262728 |
- /*
- * netspeed.h
- *
- * Created on: 2021年12月11日
- * Author: Admin
- */
- #ifndef JNI_CALL_NETSPEED_H_
- #define JNI_CALL_NETSPEED_H_
- class netspeed {
- public:
- netspeed();
- virtual ~netspeed();
- void add(int upload,int download);
- void getSpeed(int &up,int &down);
- static netspeed* getInstance();
- private:
- long uploadB;
- long downloadB;
- long lastTick;
- int upSpeed;
- int loadSpeed;
- };
- #define NETSPEED() netspeed::getInstance()
- #endif /* JNI_CALL_NETSPEED_H_ */
|