X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fconnection.cpp;h=f1ab3848f0004f4999dcfce2fdde21de13c2ba35;hb=742d2aa9bb46bce4f690474fa22f5980e175e55e;hp=7170c460c6d983e897711e8f0cb573c3d65b86d4;hpb=565c33c91ea355528145ba94b31b2e44309d0834;p=architektonas diff --git a/src/connection.cpp b/src/connection.cpp index 7170c46..f1ab384 100644 --- a/src/connection.cpp +++ b/src/connection.cpp @@ -8,35 +8,30 @@ // JLH = James Hammons // // Who When What -// --- ---------- ------------------------------------------------------------- +// --- ---------- ------------------------------------------------------------ // JLH 03/14/2013 Created this file // #include "connection.h" - Connection::Connection(Object * o/*= NULL*/, double param/*= 0*/) { object = o; t = param; } - Connection::~Connection() { } - // Check for equality bool Connection::operator==(Connection const c) { return (object == c.object) && (t == c.t); } - // Check for inequality bool Connection::operator!=(Connection const c) { return (object != c.object) || (t != c.t); } -