~zeller-benjamin/qtcreator-plugin-ubuntu/snapcraft-step1

« back to all changes in this revision

Viewing changes to src/ubuntu/snap/project/snapcraftprojectmanager.h

  • Committer: Benjamin Zeller
  • Date: 2016-10-07 12:10:57 UTC
  • Revision ID: benjamin.zeller@canonical.com-20161007121057-ze8996i48x2e8aym
Save start of the art

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef UBUNTU_INTERNAL_SNAPCRAFTPROJECTMANAGER_H
 
2
#define UBUNTU_INTERNAL_SNAPCRAFTPROJECTMANAGER_H
 
3
 
 
4
#include <projectexplorer/iprojectmanager.h>
 
5
 
 
6
namespace Ubuntu {
 
7
namespace Internal {
 
8
 
 
9
class SnapcraftProjectManager : public ProjectExplorer::IProjectManager
 
10
{
 
11
public:
 
12
    SnapcraftProjectManager();
 
13
 
 
14
    // IProjectManager interface
 
15
    virtual QString mimeType() const override;
 
16
    virtual ProjectExplorer::Project *openProject(const QString &fileName, QString *errorString) override;
 
17
};
 
18
 
 
19
} // namespace Internal
 
20
} // namespace Ubuntu
 
21
 
 
22
#endif // UBUNTU_INTERNAL_SNAPCRAFTPROJECTMANAGER_H