mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-02 00:40:10 +00:00
Automated commit of clang-format CI changes.
This commit is contained in:
parent
2ecb162dfb
commit
d395deac4e
604 changed files with 47610 additions and 38436 deletions
|
|
@ -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__ */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue