]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/include/nscalar.hh
patch::: 1.3.14.hwn1jcn1
[lilypond.git] / flower / include / nscalar.hh
index 774f2e7dc1221062edae664739890fcb75817f1a..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 100644 (file)
@@ -1,43 +0,0 @@
-/*
-  scalar.hh -- declare 
-
-  source file of the Flower Library
-
-  (c)  1997--1998 Han-Wen Nienhuys <hanwen@stack.nl>
-*/
-
-
-#ifndef SCALAR_HH
-#define SCALAR_HH
-
-struct Scalar {
-  String str_;
-  // Real real_;
-  int int_;
-  //  Rational rational_;
-
-
-  struct typebits {
-    string_bit: 1;
-    int_bit:1;
-  };
-private:
-
-  
-  //  operator Real();
-  operator int();
-  
-  /**   perl -like string to bool conversion.
-   */
-  //  operator bool() const;
-   
-  //Scalar (Real r) : String (r) {}
-  Scalar (int i) : String (i) {}
-  //  Scalar (char c) : String (c) {}
-  Scalar (char const *c) : String (c) {}    
-  Scalar (String s):String (s) {}
-  //Scalar (Rational);
-  static Scalar undefined ();
-};
-
-#endif // SCALAR_HH