--- /dev/null
+/*
+ pitch-squash-grav.hh -- declare Pitch_squash_engraver
+
+ source file of the GNU LilyPond music typesetter
+
+ (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
+
+ */
+
+#ifndef PITCH_SQUASH_GRAV_HH
+#define PITCH_SQUASH_GRAV_HH
+
+#include "engraver.hh"
+
+class Pitch_squash_engraver : public Engraver {
+public:
+ DECLARE_MY_RUNTIME_TYPEINFO;
+ TRANSLATOR_CLONE (Pitch_squash_engraver);
+ virtual void acknowledge_element (Score_elem_info);
+
+};
+
+#endif /* PITCH_SQUASH_GRAV_HH */
+