summaryrefslogtreecommitdiffstats
path: root/raul/Process.h
diff options
context:
space:
mode:
Diffstat (limited to 'raul/Process.h')
-rw-r--r--raul/Process.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/raul/Process.h b/raul/Process.h
index 698e1b9..68efb10 100644
--- a/raul/Process.h
+++ b/raul/Process.h
@@ -20,12 +20,14 @@
#include <string>
#include <iostream>
#include <unistd.h>
+#include <boost/utility.hpp>
+
/** A child process.
*
* \ingroup raul
*/
-class Process
+class Process : boost::noncopyable
{
public:
@@ -75,10 +77,7 @@ public:
}
private:
- // .... no :) (undefined)
- Process();
- Process(const Process&);
- Process& operator=(const Process&);
+ Process() {}
};