]> git.tdb.fi Git - libs/datafile.git/blobdiff - source/parser.h
Implement proper copy semantics
[libs/datafile.git] / source / parser.h
index 1437190b606b89640afabd4619a62c4fe21f65c8..d1879604b5fd8f566dd21829fbe042e7fcee3381 100644 (file)
@@ -2,6 +2,7 @@
 #define MSP_DATAFILE_PARSER_H_
 
 #include <string>
+#include <msp/core/noncopyable.h>
 #include "input.h"
 
 namespace Msp {
@@ -18,7 +19,7 @@ Frontend for loading datafiles.  Handles switching between text and binary
 formats.  A Parser evaluates into a boolean value indicating whether more
 statements may be read.
 */
-class Parser
+class Parser: private NonCopyable
 {
 private:
        Input in;