]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/paper-def.hh
release: 1.3.93
[lilypond.git] / lily / include / paper-def.hh
index a91f53787962d5c4616590fe234d12b81118bff0..17847564c689ab44e6e793ebb5430250e1410065 100644 (file)
@@ -19,6 +19,7 @@
 #include "array.hh"
 #include "interval.hh"
 #include "music-output-def.hh"
+#include "protected-scm.hh"
 
 /** 
 
 */
 class Paper_def : public Music_output_def 
 {
-  map<int, Lookup *> *lookup_p_tab_p_;
-  static int default_count_i_;
-
+  Protected_scm lookup_alist_;
 protected:
   VIRTUAL_COPY_CONS(Music_output_def);
 
 public:    
   virtual ~Paper_def ();
-
+  static int default_count_i_;
   /*
     JUNKME
    */
   Real get_realvar (SCM symbol) const;
   Real get_var (String id) const;
-
   SCM get_scmvar (String id)const; 
   void reinit ();
   Paper_def ();
-  void set_lookup (int, Lookup*);
-
+  void set_lookup (int, SCM lookup_smob);
   Paper_def (Paper_def const&);
 
-  /** The distance between beams of multiplicity_i
-      JUNKME
-  */
-  Real interbeam_f (int multiplicity_i) const;
-
   Interval line_dimensions_int (int) const;
 
-  void print () const;
-
   Lookup const * lookup_l (int sz) const;      // TODO naming
-
-
   virtual int get_next_default_count () const;
   static void reset_default_count();
-
   void output_settings (Paper_outputter*) const;
-
   Paper_stream* paper_stream_p () const;
   String base_output_str () const;