NCL Composer  0.1.5
 All Classes Functions Variables Pages
ComposerSettings.h
1 /* Copyright (c) 2011-2013 Telemidia/PUC-Rio.
2  * All rights reserved. This program and the accompanying materials
3  * are made available under the terms of the Eclipse Public License v1.0
4  * which accompanies this distribution, and is available at
5  * http://www.eclipse.org/legal/epl-v10.html
6  *
7  * Contributors:
8  * Telemidia/PUC-Rio - initial API and implementation
9  */
10 #ifndef ComposerSettings_H
11 #define ComposerSettings_H
12 
13 #include "ComposerCoreControl_global.h"
14 #include <QSettings>
15 
16 namespace composer {
17  namespace core {
18  namespace util {
19 
20 class COMPOSERCORESHARED_EXPORT GlobalSettings: public QSettings
21 {
22 public:
24 };
25 
26 class COMPOSERCORESHARED_EXPORT ProjectSettings: public QSettings
27 {
28 public:
29  ProjectSettings(const QString &project);
30 };
31 
32 } } } // end namespace
33 
34 #endif // ComposerSettings_H