Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. // child.cpp
  2. // Copyright (C) 2014 MicroNeil Research Corporation.
  3. //
  4. // This program is part of the MicroNeil Research Open Library Project. For
  5. // more information go to http://www.microneil.com/OpenLibrary/index.html
  6. //
  7. // This program is free software; you can redistribute it and/or modify it
  8. // under the terms of the GNU General Public License as published by the
  9. // Free Software Foundation; either version 2 of the License, or (at your
  10. // option) any later version.
  11. //
  12. // This program is distributed in the hope that it will be useful, but WITHOUT
  13. // ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  14. // FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  15. // more details.
  16. //
  17. // You should have received a copy of the GNU General Public License along with
  18. // this program; if not, write to the Free Software Foundation, Inc., 59 Temple
  19. // Place, Suite 330, Boston, MA 02111-1307 USA
  20. //==============================================================================
  21. // See child.hpp for notes.
  22. #include <stdexcept>
  23. #include "child.hpp"
  24. namespace CodeDweller {
  25. Child::Child(std::vector<std::string> args) {
  26. }
  27. Child::Child(std::string childpath) {
  28. }
  29. Child::~Child() {
  30. }
  31. void
  32. Child::run() {
  33. throw std::runtime_error("Not implemented");
  34. }
  35. void
  36. Child::terminate() {
  37. throw std::runtime_error("Not implemented");
  38. }
  39. int32_t
  40. Child::result() {
  41. throw std::runtime_error("Not implemented");
  42. return 0;
  43. }
  44. }