diff options
author | Mike Buland <eichlan@xagasoft.com> | 2006-07-14 07:55:14 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2006-07-14 07:55:14 +0000 |
commit | f0f38e0f164b7e8b9132665407445d93f33be7ad (patch) | |
tree | 85bad44d80eb9df45a9f7ea960b51d1b2c003843 /src/connectionmanager.h | |
parent | 74f94e9b20c93b93ad8b9091474f6368fc79c697 (diff) | |
download | libbu++-f0f38e0f164b7e8b9132665407445d93f33be7ad.tar.gz libbu++-f0f38e0f164b7e8b9132665407445d93f33be7ad.tar.bz2 libbu++-f0f38e0f164b7e8b9132665407445d93f33be7ad.tar.xz libbu++-f0f38e0f164b7e8b9132665407445d93f33be7ad.zip |
Made everything have a virtual deconstructor. This is apparently very
important.
Diffstat (limited to 'src/connectionmanager.h')
-rw-r--r-- | src/connectionmanager.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/connectionmanager.h b/src/connectionmanager.h index da49a39..85eb7ad 100644 --- a/src/connectionmanager.h +++ b/src/connectionmanager.h | |||
@@ -33,7 +33,7 @@ public: | |||
33 | * Cleans up everything, and even clears out all still-connected Connection | 33 | * Cleans up everything, and even clears out all still-connected Connection |
34 | * objects. | 34 | * objects. |
35 | */ | 35 | */ |
36 | ~ConnectionManager(); | 36 | virtual ~ConnectionManager(); |
37 | 37 | ||
38 | /** | 38 | /** |
39 | * Starts a server socket and binds to it, listening for new connections. | 39 | * Starts a server socket and binds to it, listening for new connections. |