Commit in slic on MAIN
include/G4CmdQueue.hh+4-41.15 -> 1.16
src/G4CmdQueue.cc+2-21.16 -> 1.17
+6-6
2 modified files
JM: Fix more problems with const.

slic/include
G4CmdQueue.hh 1.15 -> 1.16
diff -u -r1.15 -r1.16
--- G4CmdQueue.hh	6 Jun 2006 19:53:41 -0000	1.15
+++ G4CmdQueue.hh	6 Jun 2006 21:39:52 -0000	1.16
@@ -1,4 +1,4 @@
-// $Header: /cvs/lcd/slic/include/G4CmdQueue.hh,v 1.15 2006/06/06 19:53:41 jeremy Exp $
+// $Header: /cvs/lcd/slic/include/G4CmdQueue.hh,v 1.16 2006/06/06 21:39:52 jeremy Exp $
 
 #ifndef slic_G4CmdQueue_hh
 #define slic_G4CmdQueue_hh
@@ -43,17 +43,17 @@
       addCmd(std::string(cmdStr));
     }
 
-    CmdVecType::iterator cmdsBegin() const
+    CmdVecType::iterator cmdsBegin()
     {
       return m_commands.begin();
     }
 
-    CmdVecType::iterator cmdsEnd() const
+    CmdVecType::iterator cmdsEnd()
     {
       return m_commands.end();
     }
 
-    void printOut(std::ostream& os) const;
+    void printOut(std::ostream& os);
 
     void execCmds();
 

slic/src
G4CmdQueue.cc 1.16 -> 1.17
diff -u -r1.16 -r1.17
--- G4CmdQueue.cc	6 Jun 2006 19:53:41 -0000	1.16
+++ G4CmdQueue.cc	6 Jun 2006 21:39:53 -0000	1.17
@@ -1,11 +1,11 @@
-// $Header: /cvs/lcd/slic/src/G4CmdQueue.cc,v 1.16 2006/06/06 19:53:41 jeremy Exp $
+// $Header: /cvs/lcd/slic/src/G4CmdQueue.cc,v 1.17 2006/06/06 21:39:53 jeremy Exp $
 #include "G4CmdQueue.hh"
 
 #include "G4UImanager.hh"
 
 namespace slic
 {
-  void G4CmdQueue::printOut(std::ostream& os) const
+  void G4CmdQueue::printOut(std::ostream& os) 
   {
     std::cout << std::endl;
     os << "********************" << std::endl;
CVSspam 0.2.8