Revision: 41584
          http://brlcad.svn.sourceforge.net/brlcad/?rev=41584&view=rev
Author:   davidloman
Date:     2010-12-13 20:09:30 +0000 (Mon, 13 Dec 2010)

Log Message:
-----------
Convert some C++ comments to C style comments.

Modified Paths:
--------------
    rt^3/trunk/include/Account.h
    rt^3/trunk/include/AccountManager.h
    rt^3/trunk/include/AppLauncher.h
    rt^3/trunk/include/BaseApp.h
    rt^3/trunk/include/ControlledThread.h
    rt^3/trunk/include/DataManager.h
    rt^3/trunk/include/DataStreamUtils.h
    rt^3/trunk/include/DbObject.h
    rt^3/trunk/include/JobManager.h
    rt^3/trunk/include/JobScheduler.h

Modified: rt^3/trunk/include/Account.h
===================================================================
--- rt^3/trunk/include/Account.h        2010-12-13 20:03:40 UTC (rev 41583)
+++ rt^3/trunk/include/Account.h        2010-12-13 20:09:30 UTC (rev 41584)
@@ -52,7 +52,7 @@
 
 
 private:
-       //Disable copy cstr and =operator
+       /* Disable copy cstr and =operator */
        Account(Account const&){};
        Account& operator=(Account const&){};
 

Modified: rt^3/trunk/include/AccountManager.h
===================================================================
--- rt^3/trunk/include/AccountManager.h 2010-12-13 20:03:40 UTC (rev 41583)
+++ rt^3/trunk/include/AccountManager.h 2010-12-13 20:09:30 UTC (rev 41584)
@@ -52,7 +52,7 @@
     quint32 validateLoginCreds(QString uname, QString passwd);
     Account* newAccount(QString uname, Portal* p, quint32 id);
 
-       //Disable copy cstr and =operator
+       /* Disable copy cstr and =operator */
     AccountManager(AccountManager const&){};
     AccountManager& operator=(AccountManager const&){};
 

Modified: rt^3/trunk/include/AppLauncher.h
===================================================================
--- rt^3/trunk/include/AppLauncher.h    2010-12-13 20:03:40 UTC (rev 41583)
+++ rt^3/trunk/include/AppLauncher.h    2010-12-13 20:09:30 UTC (rev 41584)
@@ -43,7 +43,7 @@
 private:
     BaseApp* _app;
 
-       //Disable copy cstr and =operator
+       /* Disable copy cstr and =operator */
     AppLauncher(AppLauncher const&){};
     AppLauncher& operator=(AppLauncher const&){};
 };

Modified: rt^3/trunk/include/BaseApp.h
===================================================================
--- rt^3/trunk/include/BaseApp.h        2010-12-13 20:03:40 UTC (rev 41583)
+++ rt^3/trunk/include/BaseApp.h        2010-12-13 20:09:30 UTC (rev 41584)
@@ -47,7 +47,7 @@
 
 
 private:
-       //Disable copy cstr and =operator
+       /* Disable copy cstr and =operator */
     BaseApp(BaseApp const&){};
     BaseApp& operator=(BaseApp const&){};
 

Modified: rt^3/trunk/include/ControlledThread.h
===================================================================
--- rt^3/trunk/include/ControlledThread.h       2010-12-13 20:03:40 UTC (rev 
41583)
+++ rt^3/trunk/include/ControlledThread.h       2010-12-13 20:09:30 UTC (rev 
41584)
@@ -60,7 +60,7 @@
        bool runStatus;
 
 private:
-       //Disable copy cstr and =operator
+       /* Disable copy cstr and =operator */
        ControlledThread(ControlledThread const&){};
        ControlledThread& operator=(ControlledThread const&){};
 

Modified: rt^3/trunk/include/DataManager.h
===================================================================
--- rt^3/trunk/include/DataManager.h    2010-12-13 20:03:40 UTC (rev 41583)
+++ rt^3/trunk/include/DataManager.h    2010-12-13 20:09:30 UTC (rev 41584)
@@ -60,7 +60,7 @@
        void handleGeometryReqMsg(GeometryReqMsg* msg);
        void handleGeometryChunkMsg(GeometryChunkMsg* msg);
 
-       //Disable copy cstr and =operator
+       /* Disable copy cstr and =operator */
        DataManager(DataManager const&){};
        DataManager& operator=(DataManager const&){};
 };

Modified: rt^3/trunk/include/DataStreamUtils.h
===================================================================
--- rt^3/trunk/include/DataStreamUtils.h        2010-12-13 20:03:40 UTC (rev 
41583)
+++ rt^3/trunk/include/DataStreamUtils.h        2010-12-13 20:09:30 UTC (rev 
41584)
@@ -43,7 +43,7 @@
 private:
        Utils(){};
 
-       //Disable copy cstr and =operator
+       /* Disable copy cstr and =operator */
        Utils(Utils const&){};
        Utils& operator=(Utils const&){};
 };

Modified: rt^3/trunk/include/DbObject.h
===================================================================
--- rt^3/trunk/include/DbObject.h       2010-12-13 20:03:40 UTC (rev 41583)
+++ rt^3/trunk/include/DbObject.h       2010-12-13 20:09:30 UTC (rev 41584)
@@ -47,7 +47,7 @@
        QUuid id;
        QByteArray* data;
 
-       //Disable copy cstr and =operator
+       /* Disable copy cstr and =operator */
        DbObject(DbObject const&){};
        DbObject& operator=(DbObject const&){};
 

Modified: rt^3/trunk/include/JobManager.h
===================================================================
--- rt^3/trunk/include/JobManager.h     2010-12-13 20:03:40 UTC (rev 41583)
+++ rt^3/trunk/include/JobManager.h     2010-12-13 20:09:30 UTC (rev 41584)
@@ -92,7 +92,7 @@
 
        bool acceptJobs;
 
-       //Disable copy cstr and =operator
+       /* Disable copy cstr and =operator */
        JobManager(JobManager const&){};
        JobManager& operator=(JobManager const&){};
 

Modified: rt^3/trunk/include/JobScheduler.h
===================================================================
--- rt^3/trunk/include/JobScheduler.h   2010-12-13 20:03:40 UTC (rev 41583)
+++ rt^3/trunk/include/JobScheduler.h   2010-12-13 20:09:30 UTC (rev 41584)
@@ -39,7 +39,7 @@
        static JobScheduler* pInstance;
        JobScheduler();
 
-       //Disable copy cstr and =operator
+       /* Disable copy cstr and =operator */
        JobScheduler(JobScheduler const&){};
        JobScheduler& operator=(JobScheduler const&){};
 };


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

------------------------------------------------------------------------------
Lotusphere 2011
Register now for Lotusphere 2011 and learn how
to connect the dots, take your collaborative environment
to the next level, and enter the era of Social Business.
http://p.sf.net/sfu/lotusphere-d2d
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to