~ubuntu-branches/ubuntu/wily/muse/wily-proposed

« back to all changes in this revision

Viewing changes to muse/conf.h

  • Committer: Package Import Robot
  • Author(s): Alessio Treglia
  • Date: 2011-12-03 17:12:54 UTC
  • mfrom: (1.1.8)
  • Revision ID: package-import@ubuntu.com-20111203171254-28b1j4lpb46r5jtl
Tags: 2.0~rc1-1
* New upstream RC release.
* Refresh patches, remove those patches not needed anymore.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
//  $Id: conf.h,v 1.4.2.1 2006/09/28 19:22:25 spamatica Exp $
5
5
//
6
6
//  (C) Copyright 1999-2003 Werner Schweer (ws@seh.de)
 
7
//
 
8
//  This program is free software; you can redistribute it and/or
 
9
//  modify it under the terms of the GNU General Public License
 
10
//  as published by the Free Software Foundation; version 2 of
 
11
//  the License, or (at your option) any later version.
 
12
//
 
13
//  This program is distributed in the hope that it will be useful,
 
14
//  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
//  GNU General Public License for more details.
 
17
//
 
18
//  You should have received a copy of the GNU General Public License
 
19
//  along with this program; if not, write to the Free Software
 
20
//  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 
21
//
7
22
//=========================================================
8
23
 
9
24
#ifndef __CONF_H__
14
29
class QDialog;
15
30
class QLineEdit;
16
31
 
 
32
 
 
33
namespace MusEGui {
 
34
 
17
35
//---------------------------------------------------------
18
36
//   MidiFileConfig
19
37
//    config properties of exported midi files
31
49
      void updateValues();
32
50
      };
33
51
 
 
52
} // namespace MusEGui
 
53
 
 
54
namespace MusECore {
34
55
class Xml;
35
56
extern bool readConfiguration();
36
 
extern void readConfiguration(Xml&, bool readOnlySequencer);
 
57
extern void readConfiguration(Xml&, bool readOnlySequencer, bool doReadGlobalConfig);
 
58
}
 
59
 
37
60
#endif
38
61