Chris@1203: /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*-  vi:set ts=8 sts=4 sw=4: */
Chris@1203: 
Chris@1203: /*
Chris@1203:     Sonic Visualiser
Chris@1203:     An audio file viewer and annotation editor.
Chris@1203:     Centre for Digital Music, Queen Mary, University of London.
Chris@1203:     
Chris@1203:     This program is free software; you can redistribute it and/or
Chris@1203:     modify it under the terms of the GNU General Public License as
Chris@1203:     published by the Free Software Foundation; either version 2 of the
Chris@1203:     License, or (at your option) any later version.  See the file
Chris@1203:     COPYING included with this distribution for more information.
Chris@1203: */
Chris@1203: 
Chris@1203: #include "Strings.h"
Chris@1203: 
Chris@1203: QString
Chris@1203: Strings::pi = QChar(0x3c0);
Chris@1203: 
Chris@1203: QString
Chris@1203: Strings::minus_pi = "-" + pi;
Chris@1203: 
Chris@1203: QString
Chris@1203: Strings::infinity = QChar(0x221e);
Chris@1203: 
Chris@1203: QString
Chris@1203: Strings::minus_infinity = "-" + infinity;
Chris@1203: