Changed: Don't use "using namespace" in .h
This commit is contained in:
parent
c48f5380f0
commit
4e2d50d28c
2 changed files with 3 additions and 6 deletions
|
@ -23,8 +23,6 @@
|
||||||
|
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
using namespace NLMISC;
|
|
||||||
|
|
||||||
namespace NL3D {
|
namespace NL3D {
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -26,7 +26,6 @@
|
||||||
#include "nel/net/udp_sock.h"
|
#include "nel/net/udp_sock.h"
|
||||||
|
|
||||||
#include <vector>
|
#include <vector>
|
||||||
using namespace std;
|
|
||||||
|
|
||||||
|
|
||||||
const uint32 MsgHeaderSize = 1+8; // 8 for the date
|
const uint32 MsgHeaderSize = 1+8; // 8 for the date
|
||||||
|
@ -72,12 +71,12 @@ struct TReceivedMessage
|
||||||
uint32 userSize() { return (uint32)_Data.size() - MsgHeaderSize; }
|
uint32 userSize() { return (uint32)_Data.size() - MsgHeaderSize; }
|
||||||
|
|
||||||
/// Return the data vector (event type header byte + user data)
|
/// Return the data vector (event type header byte + user data)
|
||||||
vector<uint8>& data() { return _Data; }
|
std::vector<uint8>& data() { return _Data; }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
/// One byte for event type (header), followed by user data
|
/// One byte for event type (header), followed by user data
|
||||||
vector<uint8> _Data;
|
std::vector<uint8> _Data;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
|
@ -85,7 +84,7 @@ public:
|
||||||
NLNET::CInetAddress AddrFrom;
|
NLNET::CInetAddress AddrFrom;
|
||||||
|
|
||||||
/// Placeholder vector for address info
|
/// Placeholder vector for address info
|
||||||
vector<uint8> VAddrFrom;
|
std::vector<uint8> VAddrFrom;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue