Mercurial > hg > easyhg
comparison src/hgrunner.h @ 444:66ec8b2ee946
Provide auth key and file information to easyhg extension
author | Chris Cannam |
---|---|
date | Tue, 28 Jun 2011 15:59:13 +0100 |
parents | c567fed39559 |
children | 856da063d76e |
comparison
equal
deleted
inserted
replaced
443:459b140032d4 | 444:66ec8b2ee946 |
---|---|
72 QString getExtensionLocation(); | 72 QString getExtensionLocation(); |
73 | 73 |
74 QString getUnbundledFileName(); | 74 QString getUnbundledFileName(); |
75 QString unbundleExtension(); | 75 QString unbundleExtension(); |
76 | 76 |
77 QStringList addExtensionOptions(QStringList); | |
78 | |
77 int m_ptyMasterFd; | 79 int m_ptyMasterFd; |
78 int m_ptySlaveFd; | 80 int m_ptySlaveFd; |
79 QString m_ptySlaveFilename; | 81 QString m_ptySlaveFilename; |
80 QFile *m_ptyFile; | 82 QFile *m_ptyFile; |
81 | 83 |
88 QString m_realm; | 90 QString m_realm; |
89 | 91 |
90 QString m_myDirPath; | 92 QString m_myDirPath; |
91 QString m_extensionPath; | 93 QString m_extensionPath; |
92 | 94 |
95 QString m_authKey; | |
96 QString m_authFilePath; | |
97 | |
93 typedef std::deque<HgAction> ActionQueue; | 98 typedef std::deque<HgAction> ActionQueue; |
94 ActionQueue m_queue; | 99 ActionQueue m_queue; |
95 HgAction m_currentAction; | 100 HgAction m_currentAction; |
96 }; | 101 }; |
97 | 102 |