Revision: 40891
          http://brlcad.svn.sourceforge.net/brlcad/?rev=40891&view=rev
Author:   davidloman
Date:     2010-10-01 16:47:51 +0000 (Fri, 01 Oct 2010)

Log Message:
-----------
WS, Formatting, include organization, double newline removal, etc.

Modified Paths:
--------------
    rt^3/trunk/tests/GS/GeometryServiceTest.cxx
    rt^3/trunk/tests/coreInterface/PrintTitle.cpp
    rt^3/trunk/tests/libEvent/BasicEventTest.cxx
    rt^3/trunk/tests/libJob/PrintToStdOutJob.h
    rt^3/trunk/tests/libNet/CMakeLists.txt
    rt^3/trunk/tests/libNet/NetPortalManagerTester.cxx
    rt^3/trunk/tests/libNet/NetPortalManagerTester.h
    rt^3/trunk/tests/libNet/PrintingMsgHandler.h
    rt^3/trunk/tests/libNet/libNetTest.cxx
    rt^3/trunk/tests/libpkgcpp/pkgcppTest.cxx
    rt^3/trunk/tests/utility/configTest.cxx

Modified: rt^3/trunk/tests/GS/GeometryServiceTest.cxx
===================================================================
--- rt^3/trunk/tests/GS/GeometryServiceTest.cxx 2010-10-01 16:46:48 UTC (rev 
40890)
+++ rt^3/trunk/tests/GS/GeometryServiceTest.cxx 2010-10-01 16:47:51 UTC (rev 
40891)
@@ -54,7 +54,6 @@
 public:
     GeometryServer(const QHostAddress& addy = QHostAddress::LocalHost, const 
quint16 port = DEFAULT_PORT)
     {
-
        //this->gs = new GeometryService("GSTester");
 
        if (port > 0)
@@ -247,35 +246,30 @@
        switch (representation) {
        case WIREFRAME:
            {
-
                // get wireframe representation from server, return true
 
                break;
            }
        case TRIANGLES:
            {
-
                // get triangle mesh representation from server, return true
 
                break;
            }
        case POINTS:
            {
-
                // get point-cloud representation from server, return true
 
                break;
            }
        case NURBS:
            {
-
                // get NURBS representation from server, return true
 
                break;
            }
        case CAD:
            {
-
                // get .g representation from server, return true
 
                break;

Modified: rt^3/trunk/tests/coreInterface/PrintTitle.cpp
===================================================================
--- rt^3/trunk/tests/coreInterface/PrintTitle.cpp       2010-10-01 16:46:48 UTC 
(rev 40890)
+++ rt^3/trunk/tests/coreInterface/PrintTitle.cpp       2010-10-01 16:47:51 UTC 
(rev 40891)
@@ -39,7 +39,6 @@
 
 #include <brlcad/ConstDatabase.h>
 
-
 int main
 (
     int   argc,

Modified: rt^3/trunk/tests/libEvent/BasicEventTest.cxx
===================================================================
--- rt^3/trunk/tests/libEvent/BasicEventTest.cxx        2010-10-01 16:46:48 UTC 
(rev 40890)
+++ rt^3/trunk/tests/libEvent/BasicEventTest.cxx        2010-10-01 16:47:51 UTC 
(rev 40891)
@@ -30,7 +30,7 @@
 
 #include <QtCore/Qt>
 
-class TestSubscriber: public EventSubscriber
+class TestSubscriber : public EventSubscriber
 {
 public:
     TestSubscriber(QString name) :
@@ -51,7 +51,7 @@
     QString _name;
 };
 
-class TestPublisher: public EventPublisher
+class TestPublisher : public EventPublisher
 {
 public:
     TestPublisher(QString name) : _name(name){};

Modified: rt^3/trunk/tests/libJob/PrintToStdOutJob.h
===================================================================
--- rt^3/trunk/tests/libJob/PrintToStdOutJob.h  2010-10-01 16:46:48 UTC (rev 
40890)
+++ rt^3/trunk/tests/libJob/PrintToStdOutJob.h  2010-10-01 16:47:51 UTC (rev 
40891)
@@ -29,7 +29,7 @@
 #include <QtCore/QMutex>
 #include <QtCore/QMutexLocker>
 
-class PrintToStdOutJob: public AbstractJob
+class PrintToStdOutJob : public AbstractJob
 {
 public:
     PrintToStdOutJob(QString text);
@@ -41,7 +41,6 @@
 private:
     QString text;
     QMutex* streamLock;
-
 };
 
 #endif /* __PRINTTOSTDOUTJOB_H__ */

Modified: rt^3/trunk/tests/libNet/CMakeLists.txt
===================================================================
--- rt^3/trunk/tests/libNet/CMakeLists.txt      2010-10-01 16:46:48 UTC (rev 
40890)
+++ rt^3/trunk/tests/libNet/CMakeLists.txt      2010-10-01 16:47:51 UTC (rev 
40891)
@@ -62,7 +62,6 @@
 #Build the project
 RT3_PROJECT_BUILD_EXE()
 
-
 ##########################################################################
 
 RT3_PROJECT(libNetTest)
@@ -101,4 +100,3 @@
 #Build the project
 RT3_PROJECT_BUILD_EXE()
 
-

Modified: rt^3/trunk/tests/libNet/NetPortalManagerTester.cxx
===================================================================
--- rt^3/trunk/tests/libNet/NetPortalManagerTester.cxx  2010-10-01 16:46:48 UTC 
(rev 40890)
+++ rt^3/trunk/tests/libNet/NetPortalManagerTester.cxx  2010-10-01 16:47:51 UTC 
(rev 40891)
@@ -61,7 +61,6 @@
 {
     this->portMan->localLog("Handshake status update: " + QString::number(old)
            + "->" + QString::number(current));
-
 }
 void NetPortalManagerTester::handleHandshakeComplete(NetPortal* portal)
 {

Modified: rt^3/trunk/tests/libNet/NetPortalManagerTester.h
===================================================================
--- rt^3/trunk/tests/libNet/NetPortalManagerTester.h    2010-10-01 16:46:48 UTC 
(rev 40890)
+++ rt^3/trunk/tests/libNet/NetPortalManagerTester.h    2010-10-01 16:47:51 UTC 
(rev 40891)
@@ -31,7 +31,7 @@
 
 #include <QObject>
 
-class NetPortalManagerTester: public QObject
+class NetPortalManagerTester : public QObject
 {
 Q_OBJECT
 

Modified: rt^3/trunk/tests/libNet/PrintingMsgHandler.h
===================================================================
--- rt^3/trunk/tests/libNet/PrintingMsgHandler.h        2010-10-01 16:46:48 UTC 
(rev 40890)
+++ rt^3/trunk/tests/libNet/PrintingMsgHandler.h        2010-10-01 16:47:51 UTC 
(rev 40891)
@@ -29,7 +29,7 @@
 
 #include <QtCore/QString>
 
-class PrintingMsgHandler: public INetMsgHandler
+class PrintingMsgHandler : public INetMsgHandler
 {
 public:
     PrintingMsgHandler(QString name): _name(name) {}

Modified: rt^3/trunk/tests/libNet/libNetTest.cxx
===================================================================
--- rt^3/trunk/tests/libNet/libNetTest.cxx      2010-10-01 16:46:48 UTC (rev 
40890)
+++ rt^3/trunk/tests/libNet/libNetTest.cxx      2010-10-01 16:47:51 UTC (rev 
40891)
@@ -45,7 +45,6 @@
  * Prints the 'usage' statement to the console along with an optional message
  */
 void printUsage(std::string customMsg) {
-
        if (customMsg.length() > 0) {
                customMsg += "\n";
                QString s(customMsg.c_str());

Modified: rt^3/trunk/tests/libpkgcpp/pkgcppTest.cxx
===================================================================
--- rt^3/trunk/tests/libpkgcpp/pkgcppTest.cxx   2010-10-01 16:46:48 UTC (rev 
40890)
+++ rt^3/trunk/tests/libpkgcpp/pkgcppTest.cxx   2010-10-01 16:47:51 UTC (rev 
40891)
@@ -72,7 +72,6 @@
 int
 main(int argc, char** argv)
 {
-
   if (argc > 4 || argc < 3)
     {
       printUsage("Incorrect ARG count.");
@@ -163,7 +162,6 @@
 int
 runServer(int port)
 {
-
   struct pkg_switch callbacks[] =
     {
       { PKGCPP_HELO, server_helo, "HELO" },
@@ -384,7 +382,6 @@
 void
 printUsage(std::string customMsg)
 {
-
   if (customMsg.length() > 0)
     {
       std::cout << customMsg << std::endl;

Modified: rt^3/trunk/tests/utility/configTest.cxx
===================================================================
--- rt^3/trunk/tests/utility/configTest.cxx     2010-10-01 16:46:48 UTC (rev 
40890)
+++ rt^3/trunk/tests/utility/configTest.cxx     2010-10-01 16:47:51 UTC (rev 
40891)
@@ -35,18 +35,15 @@
 
        c->loadFile("test.config");
 
-
        QList<QString> keys = c->getAllKeys();
 
         for (int i = 0; i < keys.size(); ++i) {
-
             QString key = keys.at(i);
             QString value = c->getConfigValue(key);
 
             log->logINFO("ConfigTest", "Read " + key + " value: " + value);
         }
 
-
        return 0;
 }
 


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