~adamreichold/qpdfview/trunk

« back to all changes in this revision

Viewing changes to sources/pluginhandler.h

  • Committer: Adam Reichold
  • Date: 2014-03-29 10:20:32 UTC
  • Revision ID: adam.reichold@t-online.com-20140329102032-6z5yl9a2fkwm62rd
Make proper use of application and anonymous namespaces and fix a few header guards.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
class QString;
29
29
class QWidget;
30
30
 
31
 
namespace Model
 
31
namespace qpdfview
 
32
{
 
33
 
 
34
namespace model
32
35
{
33
36
class Document;
34
37
}
68
71
        }
69
72
    }
70
73
 
71
 
    Model::Document* loadDocument(const QString& filePath);
 
74
    model::Document* loadDocument(const QString& filePath);
72
75
 
73
76
    SettingsWidget* createSettingsWidget(FileType fileType, QWidget* parent = 0);
74
77
 
87
90
 
88
91
};
89
92
 
 
93
} // qpdfview
 
94
 
90
95
#endif // PLUGINHANDLER_H