~ubuntu-branches/ubuntu/utopic/kdevplatform/utopic-proposed

« back to all changes in this revision

Viewing changes to plugins/externalscript/externalscriptjob.h

  • Committer: Package Import Robot
  • Author(s): Scarlett Clark
  • Date: 2014-08-30 03:52:11 UTC
  • mfrom: (0.3.26)
  • Revision ID: package-import@ubuntu.com-20140830035211-wndqlc843eu2v8nk
Tags: 1.7.0-0ubuntu1
* New upstream release
* Add XS-Testsuite: autopkgtest

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
#include "externalscriptitem.h"
28
28
 
29
29
#include <KTextEditor/Range>
 
30
#include <KUrl>
30
31
 
31
32
namespace KDevelop
32
33
{
48
49
  Q_OBJECT
49
50
 
50
51
public:
51
 
  ExternalScriptJob( ExternalScriptItem* item, ExternalScriptPlugin* parent );
 
52
  ExternalScriptJob( ExternalScriptItem* item, const KUrl &url, ExternalScriptPlugin* parent );
52
53
  virtual void start();
53
54
  KDevelop::OutputModel* model();
54
55
 
71
72
  ExternalScriptItem::ErrorMode m_errorMode;
72
73
  int m_filterMode;
73
74
  KTextEditor::Document* m_document;
 
75
  KUrl m_url;
74
76
  /// invalid when whole doc should be replaced
75
77
  KTextEditor::Range m_selectionRange;
76
78
  KTextEditor::Cursor m_cursorPosition;