added destructor
authorMichal Voců <michal@ruk.cuni.cz>
Wed, 20 Jun 2007 08:58:40 +0000 (08:58 +0000)
committerMichal Voců <michal@ruk.cuni.cz>
Wed, 20 Jun 2007 08:58:40 +0000 (08:58 +0000)
org.glite.lb.logger/src-nt/Connection.H
org.glite.lb.logger/src-nt/PlainConnection.H

index 692c019..75d20d7 100644 (file)
@@ -8,6 +8,8 @@ public:
        public:
                virtual Connection *newConnection(int fd) const = 0;
                virtual Connection *accept(int fd) const = 0;
+
+               virtual ~Factory() = 0;
        };
 
        class Endpoint {
index 3551286..556d428 100644 (file)
@@ -15,6 +15,8 @@ public:
                }
 
                virtual Connection *accept(int fd) const;
+
+               virtual ~Factory() {}
        };
 
        static Factory theFactory;