]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/translator-ctors.cc
ly- -> ly:
[lilypond.git] / lily / translator-ctors.cc
index 4e57c28fa570a41aba37e2e6768e3ec51e30777f..339454b86f594cd2c89f097deace4560f95fe292 100644 (file)
@@ -3,12 +3,12 @@
 
   source file of the GNU LilyPond music typesetter
 
-  (c)  1997--2001 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c)  1997--2002 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
 #include "translator.hh"
 #include "dictionary.hh"
-#include "debug.hh"
+#include "warn.hh"
 
 /*
   should delete these after exit.
 /*
   UGH. Dictionary is deprecated
  */
-Dictionary<Translator*> *global_translator_dict_p=0;
+Dictionary<Translator*> *global_translator_dict=0;
+
+LY_DEFINE(get_all_translators,"ly:get-all-translators", 0, 0, 0,  (),
+         "Return an list of a all translator objects that may be instantiated
+during a lilypond run.")
+{
+  SCM l = SCM_EOL;
+  for (std::map<String,Translator*>::const_iterator (ci (global_translator_dict->begin()));
+       ci != global_translator_dict->end (); ci++)
+    {
+      l = scm_cons ((*ci).second->self_scm (), l);
+    }
+  return l;
+}
 
 void
 add_translator (Translator *t)
 {
-  if (!global_translator_dict_p)
-    global_translator_dict_p = new Dictionary<Translator*>;
+  if (!global_translator_dict)
+    global_translator_dict = new Dictionary<Translator*>;
 
 (*global_translator_dict_p)[classname (t)] = t;
(*global_translator_dict)[classname (t)] = t;
 }
 
 Translator*
-get_translator_l (String s)
+get_translator (String s)
 {
-  if (global_translator_dict_p->elem_b (s))
+  if (global_translator_dict->elem_b (s))
     {
-       Translator* t = (*global_translator_dict_p)[s];
+       Translator* t = (*global_translator_dict)[s];
        return t;
     }