Guest User

Untitled

a guest
Jul 18th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.66 KB | None | 0 0
  1. /*
  2. * shows the environment variable $HOME
  3. */
  4. QString Konsole::getHomePath()
  5. {}
  6.  
  7. /*
  8. * shows the environment variable $USERNAME
  9. */
  10. QString Konsole::getUserName()
  11. {}
  12.  
  13. /*
  14. * shows the environment variable $LOGNAME
  15. */
  16. QString Konsole::getLogName()
  17. {}
  18.  
  19. /*
  20. * shows the environment variable $USER
  21. */
  22. QString Konsole::getUser()
  23. {}
  24.  
  25. /*
  26. * shows the host name
  27. */
  28. QString Konsole::getHostName()
  29. {}
  30.  
  31. /*
  32. * executes rm command
  33. * parameters targets
  34. */
  35. void Konsole::rm(QStringList targets)
  36. {}
  37.  
  38. /*
  39. * executes rm command
  40. * parameters flags, targets
  41. */
  42. void Konsole::rm(QString flags, QStringList targets)
  43. {}
  44.  
  45. /*
  46. * executes zip command
  47. * parameters flags, targets
  48. */
  49. void Konsole::zip(QString flags, QStringList targets)
  50. {}
  51.  
  52. /*
  53. * executes zip command with a destination path
  54. * parameters flags, destpath, targets
  55. */
  56. void Konsole::zip(QString flags, QString destpath, QStringList targets)
  57. {}
  58.  
  59. /*
  60. * sends file to the selected device
  61. * parameters flag1, devpath, flag2, filepath
  62. */
  63. void Konsole::obexftp(QString flag1, QString devpath, QString flag2, QString filepath)
  64. {}
  65.  
  66. /*
  67. * returns the pid of process
  68. * parameters pname
  69. */
  70. QString Konsole::pidof(QString pname)
  71. {}
  72.  
  73. /*
  74. * shows the environment variable
  75. * parameters var
  76. */
  77. QString Konsole::printenv(QString var)
  78. {}
  79.  
  80. /*
  81. * executes any command supported
  82. * parameters cmd, cmdargs
  83. */
  84. QString Konsole::run(QString cmd, QString cmdargs)
  85. {}
  86.  
  87. /*
  88. * slot
  89. */
  90. void Konsole::readFromStdOut()
  91. {}
  92.  
  93. /*
  94. * reads the output.txt file and puts the stream
  95. * on the output variable
  96. */
  97. void Konsole::readyToReadOutPutFile()
  98. {}
  99.  
  100. /*
  101. * resets the main variables
  102. */
  103. void Konsole::clear()
  104. {}
Add Comment
Please, Sign In to add comment