]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/object-key-dumper.hh
Fix #219.
[lilypond.git] / lily / include / object-key-dumper.hh
index ad7507a04e4ccd393b2bc2cc2b590bf455d239c6..582199ad5bbf8ade933943f89b491563fb719578 100644 (file)
@@ -3,19 +3,20 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c) 2004--2005 Han-Wen Nienhuys <hanwen@xs4all.nl>
+  (c) 2004--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
 */
 
 #ifndef OBJECT_KEY_DUMPER_HH
 #define OBJECT_KEY_DUMPER_HH
 
 #include <map>
+using namespace std;
 
 #include "object-key.hh"
 
-typedef std::map < Object_key const *, Object_key const *, Object_key_less> Key_to_key_map;
-typedef std::map < Object_key const *, int> Pointer_to_int_map;
-typedef std::map < int, Object_key const *> Int_to_key_map;
+typedef map<Object_key const *, Object_key const *, Object_key_less> Key_to_key_map;
+typedef map<Object_key const *, int> Pointer_to_int_map;
+typedef map<int, Object_key const *> Int_to_key_map;
 
 class Object_key_dumper
 {
@@ -26,7 +27,7 @@ class Object_key_dumper
 
   SCM key_serial (int);
   SCM serialize_key (Object_key const *);
-  DECLARE_SMOBS (Object_key_dumper,);
+  DECLARE_SMOBS (Object_key_dumper);
 public:
   Object_key_dumper ();
   SCM get_file_contents () const;