Mercurial > hg > octave-thorsten
comparison src/oct-procbuf.h @ 12122:f4689107dd8c
Explicitly disallow copying in some classes.
author | Pascal Dupuis <Pascal.Dupuis@uclouvain.be> |
---|---|
date | Sat, 22 Jan 2011 02:21:52 -0500 |
parents | fd0a3ac60b0e |
children | 72c96de7a403 |
comparison
equal
deleted
inserted
replaced
11598:62b7ea59a6ff | 12122:f4689107dd8c |
---|---|
62 bool open_p; | 62 bool open_p; |
63 | 63 |
64 pid_t proc_pid; | 64 pid_t proc_pid; |
65 | 65 |
66 octave_procbuf *next; | 66 octave_procbuf *next; |
67 | |
68 private: | |
69 | |
70 // No copying! | |
71 | |
72 octave_procbuf (const octave_procbuf&); | |
73 | |
74 octave_procbuf& operator = (const octave_procbuf&); | |
67 }; | 75 }; |
68 | 76 |
69 extern void symbols_of_oct_procbuf (void); | 77 extern void symbols_of_oct_procbuf (void); |
70 | 78 |
71 #endif | 79 #endif |