Automated commit of clang-format CI changes.

This commit is contained in:
lucaderi 2023-04-07 14:20:44 +00:00 committed by clang-format-bot
parent 2ecb162dfb
commit d395deac4e
604 changed files with 47610 additions and 38436 deletions

View file

@ -25,22 +25,21 @@
#include "ntop_includes.h"
class ActiveHostWalkerInfo {
private:
private:
std::string name, label;
int64_t x, y;
u_int64_t z;
public:
ActiveHostWalkerInfo(char* _name, char* _label,
int64_t _x, int64_t _y,
u_int64_t _z) {
name.assign(_name), label.assign(_label), x = _x, y = _y, z = _z;
public:
ActiveHostWalkerInfo(char* _name, char* _label, int64_t _x, int64_t _y,
u_int64_t _z) {
name.assign(_name), label.assign(_label), x = _x, y = _y, z = _z;
}
inline u_int64_t getZ() const { return(z); }
inline u_int64_t getZ() const { return (z); }
void lua(lua_State* vm, bool treeMapMode);
};
#endif /* __ACTIVE_HOST_WALKER_INFO__ */