automatic commit
[folded-ctf.git] / shared.h
index b17e6f0..3d90c8d 100644 (file)
--- a/shared.h
+++ b/shared.h
 // You should have received a copy of the GNU General Public License     //
 // along with this program. If not, see <http://www.gnu.org/licenses/>.  //
 //                                                                       //
-// Written by Francois Fleuret, (C) IDIAP                                //
+// Written by Francois Fleuret                                           //
+// (C) Idiap Research Institute                                          //
+//                                                                       //
 // Contact <francois.fleuret@idiap.ch> for comments & bug reports        //
 ///////////////////////////////////////////////////////////////////////////
 
-// A tiny class to implement shared objects and lazy deletion
+/*
+
+  A tiny class to implement shared objects and lazy deletion. When you
+  create a reference to such an object, call grab(), and when you
+  destroy that reference, call release() which will delete it if no
+  reference remains. Never delete it yourself!
 
-// When you create a reference to such an object, call grab(), and
-// when you destroy that reference, call release() which will delete
-// it if no reference remains. Never delete it yourself!
+ */
 
 #ifndef SHARED_H
 #define SHARED_H