Mercurial > cabal
comparison sources/headers/connection.hpp @ 8:ed800eab1c38 tip
fixed the brackets :^)
| author | Vlad Glagolev <enqlave@gmail.com> |
|---|---|
| date | Sun, 20 Apr 2008 13:45:32 +0400 |
| parents | 8d54d9fdeca3 |
| children |
comparison
equal
deleted
inserted
replaced
| 7:8d54d9fdeca3 | 8:ed800eab1c38 |
|---|---|
| 50 host_type(pchar h, int p, pchar pw): | 50 host_type(pchar h, int p, pchar pw): |
| 51 host(h), | 51 host(h), |
| 52 port(p), | 52 port(p), |
| 53 password(pw), | 53 password(pw), |
| 54 next(this) | 54 next(this) |
| 55 { | 55 {}; |
| 56 }; | |
| 57 host_type(pchar h, int p, pchar pw, host_type *t): | 56 host_type(pchar h, int p, pchar pw, host_type *t): |
| 58 host(h), | 57 host(h), |
| 59 port(p), | 58 port(p), |
| 60 password(pw), | 59 password(pw), |
| 61 next(t) | 60 next(t) |
| 62 { | 61 {}; |
| 63 }; | |
| 64 } *hosts, *current; | 62 } *hosts, *current; |
| 65 | 63 |
| 66 host_type *addHost(host_type *, pchar, int, pchar); | 64 host_type *addHost(host_type *, pchar, int, pchar); |
| 67 | 65 |
| 68 pchar virtualhost, nick, user, name, chan, key; | 66 pchar virtualhost, nick, user, name, chan, key; |
