Added operator<<

pull/1/head
Tatsuhiro Tsujikawa 2007-03-19 17:04:15 +00:00
parent 4c00118409
commit 0f514b0db1
1 changed files with 3 additions and 0 deletions

View File

@ -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<AuthConfigItem> AuthConfigItemHandle;
ostream& operator<<(ostream& o, const AuthConfigItemHandle& authConfigItem);
#endif // _D_AUTH_CONFIG_ITEM_H_