Skip to content
This repository has been archived by the owner on Sep 7, 2024. It is now read-only.

Commit

Permalink
ADD: PID function #158
Browse files Browse the repository at this point in the history
  • Loading branch information
anak10thn committed Mar 3, 2015
1 parent f564d45 commit 5948907
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/ignprocess.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,6 @@ void ignprocess::kill(){
this->proc.kill();
}

int ignprocess::pid(){
return this->proc.pid();
}
1 change: 1 addition & 0 deletions src/ignprocess.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ public slots:
void exec(const QString& cli);
void _out();
void kill();
int pid();
};

#endif // IGNPROCESS_H

0 comments on commit 5948907

Please sign in to comment.