Revision: 40580
          http://brlcad.svn.sourceforge.net/brlcad/?rev=40580&view=rev
Author:   davidloman
Date:     2010-09-15 16:34:00 +0000 (Wed, 15 Sep 2010)

Log Message:
-----------
Rename NetPortal to Portal and NetPortalManager to PortalManager.  Better 
represents the functions of a base level class that does not necessarily have 
to do with the 'net'

Modified Paths:
--------------
    rt^3/trunk/include/INetMsgHandler.h
    rt^3/trunk/src/libNet/CMakeLists.txt

Added Paths:
-----------
    rt^3/trunk/include/Portal.h
    rt^3/trunk/include/PortalManager.h
    rt^3/trunk/src/libNet/Portal.cxx
    rt^3/trunk/src/libNet/PortalManager.cxx

Removed Paths:
-------------
    rt^3/trunk/include/NetPortal.h
    rt^3/trunk/include/NetPortalManager.h
    rt^3/trunk/src/libNet/NetPortal.cxx
    rt^3/trunk/src/libNet/NetPortalManager.cxx

Modified: rt^3/trunk/include/INetMsgHandler.h
===================================================================
--- rt^3/trunk/include/INetMsgHandler.h 2010-09-15 16:26:19 UTC (rev 40579)
+++ rt^3/trunk/include/INetMsgHandler.h 2010-09-15 16:34:00 UTC (rev 40580)
@@ -29,11 +29,11 @@
 #define __INETMSGHANDLER_H__
 
 #include "NetMsg.h"
-#include "NetPortal.h"
+#include "Portal.h"
 
 class INetMsgHandler {
 public:
-       virtual void handleNetMsg(NetMsg* msg, NetPortal* origin) = 0;
+       virtual void handleNetMsg(NetMsg* msg, Portal* origin) = 0;
 };
 
 #endif /* __INETMSGHANDLER_H__ */

Deleted: rt^3/trunk/include/NetPortal.h
===================================================================
--- rt^3/trunk/include/NetPortal.h      2010-09-15 16:26:19 UTC (rev 40579)
+++ rt^3/trunk/include/NetPortal.h      2010-09-15 16:34:00 UTC (rev 40580)
@@ -1,45 +0,0 @@
-/*                     N E T P O R T A L . H
- * BRL-CAD
- *
- * Copyright (c) 2010 United States Government as represented by
- * the U.S. Army Research Laboratory.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public License
- * version 2.1 as published by the Free Software Foundation.
- *
- * This library is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this file; see the file named COPYING for more
- * information.
- */
-/** @file NetPortal.h
- *
- * Brief description
- *
- */
-
-#ifndef __NETPORTAL_H__
-#define __NETPORTAL_H__
-
-class NetPortal
-{
-public:
-       NetPortal();
-       virtual ~NetPortal();
-};
-
-#endif
-
-// Local Variables: ***
-// mode: C++ ***
-// tab-width: 8 ***
-// c-basic-offset: 2 ***
-// indent-tabs-mode: t ***
-// End: ***
-// ex: shiftwidth=2 tabstop=8
-

Deleted: rt^3/trunk/include/NetPortalManager.h
===================================================================
--- rt^3/trunk/include/NetPortalManager.h       2010-09-15 16:26:19 UTC (rev 
40579)
+++ rt^3/trunk/include/NetPortalManager.h       2010-09-15 16:34:00 UTC (rev 
40580)
@@ -1,50 +0,0 @@
-/*              N E T P O R T A L M A N A G E R . H
- * BRL-CAD
- *
- * Copyright (c) 2010 United States Government as represented by
- * the U.S. Army Research Laboratory.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public License
- * version 2.1 as published by the Free Software Foundation.
- *
- * This library is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this file; see the file named COPYING for more
- * information.
- */
-/** @file NetPortalManager.h
- *
- * Brief description
- *
- */
-
-#ifndef __NETPORTALMANAGER_H__
-#define __NETPORTALMANAGER_H__
-
-#include "libutility.h"
-
-#include <Qt>
-
-class NetPortalManager
-{
-public:
-       NetPortalManager(quint32 port);
-       ~NetPortalManager();
-};
-
-#endif
-
-/*
- * Local Variables:
- * tab-width: 8
- * mode: C
- * indent-tabs-mode: t
- * c-file-style: "stroustrup"
- * End:
- * ex: shiftwidth=4 tabstop=8
- */

Copied: rt^3/trunk/include/Portal.h (from rev 40579, 
rt^3/trunk/include/NetPortal.h)
===================================================================
--- rt^3/trunk/include/Portal.h                         (rev 0)
+++ rt^3/trunk/include/Portal.h 2010-09-15 16:34:00 UTC (rev 40580)
@@ -0,0 +1,45 @@
+/*                        P O R T A L . H
+ * BRL-CAD
+ *
+ * Copyright (c) 2010 United States Government as represented by
+ * the U.S. Army Research Laboratory.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public License
+ * version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this file; see the file named COPYING for more
+ * information.
+ */
+/** @file Portal.h
+ *
+ * Brief description
+ *
+ */
+
+#ifndef __PORTAL_H__
+#define __PORTAL_H__
+
+class Portal
+{
+public:
+       Portal();
+       virtual ~Portal();
+};
+
+#endif
+
+// Local Variables: ***
+// mode: C++ ***
+// tab-width: 8 ***
+// c-basic-offset: 2 ***
+// indent-tabs-mode: t ***
+// End: ***
+// ex: shiftwidth=2 tabstop=8
+

Copied: rt^3/trunk/include/PortalManager.h (from rev 40579, 
rt^3/trunk/include/NetPortalManager.h)
===================================================================
--- rt^3/trunk/include/PortalManager.h                          (rev 0)
+++ rt^3/trunk/include/PortalManager.h  2010-09-15 16:34:00 UTC (rev 40580)
@@ -0,0 +1,50 @@
+/*                 P O R T A L M A N A G E R . H
+ * BRL-CAD
+ *
+ * Copyright (c) 2010 United States Government as represented by
+ * the U.S. Army Research Laboratory.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public License
+ * version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this file; see the file named COPYING for more
+ * information.
+ */
+/** @file PortalManager.h
+ *
+ * Brief description
+ *
+ */
+
+#ifndef __PORTALMANAGER_H__
+#define __PORTALMANAGER_H__
+
+#include "libutility.h"
+
+#include <Qt>
+
+class PortalManager
+{
+public:
+       PortalManager(quint32 port);
+       ~PortalManager();
+};
+
+#endif
+
+/*
+ * Local Variables:
+ * tab-width: 8
+ * mode: C
+ * indent-tabs-mode: t
+ * c-file-style: "stroustrup"
+ * End:
+ * ex: shiftwidth=4 tabstop=8
+ */

Modified: rt^3/trunk/src/libNet/CMakeLists.txt
===================================================================
--- rt^3/trunk/src/libNet/CMakeLists.txt        2010-09-15 16:26:19 UTC (rev 
40579)
+++ rt^3/trunk/src/libNet/CMakeLists.txt        2010-09-15 16:34:00 UTC (rev 
40580)
@@ -44,8 +44,8 @@
 
 #set Source files
 RT3_PROJECT_ADD_SOURCES (
-       NetPortal.cxx
-       NetPortalManager.cxx
+       Portal.cxx
+       PortalManager.cxx
        NetMsgFactory.cxx
        netMsg/NetMsg.cxx
        netMsg/TypeOnlyMsg.cxx
@@ -67,8 +67,8 @@
 
 #Set INST Headers
 RT3_PROJECT_ADD_INST_HEADERS(
-       NetPortal.h
-       NetPortalManager.h
+       Portal.h
+       PortalManager.h
     NetMsgTypes.h
     INetMsgHandler.h
        NetMsgFactory.h

Deleted: rt^3/trunk/src/libNet/NetPortal.cxx
===================================================================
--- rt^3/trunk/src/libNet/NetPortal.cxx 2010-09-15 16:26:19 UTC (rev 40579)
+++ rt^3/trunk/src/libNet/NetPortal.cxx 2010-09-15 16:34:00 UTC (rev 40580)
@@ -1,43 +0,0 @@
-/*               N E T P O R T A L . C X X
- * BRL-CAD
- *
- * Copyright (c) 2010 United States Government as represented by
- * the U.S. Army Research Laboratory.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public License
- * version 2.1 as published by the Free Software Foundation.
- *
- * This library is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this file; see the file named COPYING for more
- * information.
- */
-/** @file NetPortal.cxx
- *
- * Brief description
- *
- */
-
-#include "NetPortal.h"
-
-NetPortal::NetPortal()
-{
-}
-
-NetPortal::~NetPortal()
-{
-}
-
-
-// Local Variables: ***
-// mode: C++ ***
-// tab-width: 8 ***
-// c-basic-offset: 2 ***
-// indent-tabs-mode: t ***
-// End: ***
-// ex: shiftwidth=2 tabstop=8

Deleted: rt^3/trunk/src/libNet/NetPortalManager.cxx
===================================================================
--- rt^3/trunk/src/libNet/NetPortalManager.cxx  2010-09-15 16:26:19 UTC (rev 
40579)
+++ rt^3/trunk/src/libNet/NetPortalManager.cxx  2010-09-15 16:34:00 UTC (rev 
40580)
@@ -1,42 +0,0 @@
-/*        N E T P O R T A L M A N A G E R . C X X
- * BRL-CAD
- *
- * Copyright (c) 2010 United States Government as represented by
- * the U.S. Army Research Laboratory.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public License
- * version 2.1 as published by the Free Software Foundation.
- *
- * This library is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this file; see the file named COPYING for more
- * information.
- */
-/** @file NetPortalManager.cxx
- *
- * Brief description
- *
- */
-
-#include "NetPortalManager.h"
-
-NetPortalManager::NetPortalManager(quint32 port)
-{
-}
-
-NetPortalManager::~NetPortalManager()
-{
-}
-
-// Local Variables:
-// tab-width: 8
-// mode: C++
-// c-basic-offset: 4
-// indent-tabs-mode: t
-// End:
-// ex: shiftwidth=4 tabstop=8

Copied: rt^3/trunk/src/libNet/Portal.cxx (from rev 40579, 
rt^3/trunk/src/libNet/NetPortal.cxx)
===================================================================
--- rt^3/trunk/src/libNet/Portal.cxx                            (rev 0)
+++ rt^3/trunk/src/libNet/Portal.cxx    2010-09-15 16:34:00 UTC (rev 40580)
@@ -0,0 +1,43 @@
+/*                  P O R T A L . C X X
+ * BRL-CAD
+ *
+ * Copyright (c) 2010 United States Government as represented by
+ * the U.S. Army Research Laboratory.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public License
+ * version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this file; see the file named COPYING for more
+ * information.
+ */
+/** @file Portal.cxx
+ *
+ * Brief description
+ *
+ */
+
+#include "Portal.h"
+
+Portal::Portal()
+{
+}
+
+Portal::~Portal()
+{
+}
+
+
+// Local Variables: ***
+// mode: C++ ***
+// tab-width: 8 ***
+// c-basic-offset: 2 ***
+// indent-tabs-mode: t ***
+// End: ***
+// ex: shiftwidth=2 tabstop=8

Copied: rt^3/trunk/src/libNet/PortalManager.cxx (from rev 40579, 
rt^3/trunk/src/libNet/NetPortalManager.cxx)
===================================================================
--- rt^3/trunk/src/libNet/PortalManager.cxx                             (rev 0)
+++ rt^3/trunk/src/libNet/PortalManager.cxx     2010-09-15 16:34:00 UTC (rev 
40580)
@@ -0,0 +1,42 @@
+/*           P O R T A L M A N A G E R . C X X
+ * BRL-CAD
+ *
+ * Copyright (c) 2010 United States Government as represented by
+ * the U.S. Army Research Laboratory.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public License
+ * version 2.1 as published by the Free Software Foundation.
+ *
+ * This library is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this file; see the file named COPYING for more
+ * information.
+ */
+/** @file PortalManager.cxx
+ *
+ * Brief description
+ *
+ */
+
+#include "PortalManager.h"
+
+PortalManager::PortalManager(quint32 port)
+{
+}
+
+PortalManager::~PortalManager()
+{
+}
+
+// Local Variables:
+// tab-width: 8
+// mode: C++
+// c-basic-offset: 4
+// indent-tabs-mode: t
+// End:
+// ex: shiftwidth=4 tabstop=8


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

------------------------------------------------------------------------------
Start uncovering the many advantages of virtual appliances
and start using them to simplify application deployment and
accelerate your shift to cloud computing.
http://p.sf.net/sfu/novell-sfdev2dev
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to