diff --git a/src/AuthConfigItem.h b/src/AuthConfigItem.h index 68904251..416fe34c 100644 --- a/src/AuthConfigItem.h +++ b/src/AuthConfigItem.h @@ -44,6 +44,7 @@ private: string _password; public: + AuthConfigItem() {} AuthConfigItem(const string& user, const string& password): _user(user), _password(password) {} @@ -65,4 +66,6 @@ public: typedef SharedHandle AuthConfigItemHandle; +ostream& operator<<(ostream& o, const AuthConfigItemHandle& authConfigItem); + #endif // _D_AUTH_CONFIG_ITEM_H_