summaryrefslogtreecommitdiff
path: root/networkPrefix.h
diff options
context:
space:
mode:
Diffstat (limited to 'networkPrefix.h')
-rw-r--r--networkPrefix.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/networkPrefix.h b/networkPrefix.h
index c4b589c..fac1b08 100644
--- a/networkPrefix.h
+++ b/networkPrefix.h
@@ -43,11 +43,14 @@ class NetworkPrefix : public NetworkAddress
public:
NetworkPrefix();
NetworkPrefix(const NetworkAddress &);
+ NetworkPrefix(const NetworkPrefix &);
void setNetworkPrefixLength(uint8_t length );
uint8_t getNetworkPrefixLength();
bool operator<(const NetworkPrefix &s) const;
private:
+ operator NetworkAddress();
+ void operator=(const NetworkPrefix &s);
uint8_t length_;
friend class boost::serialization::access;
template<class Archive>