Clarified some copy/assignment issues with the stream/streamcharsource.

This commit is contained in:
jbeder
2009-07-10 03:20:16 +00:00
parent 4ba713bf43
commit 907960850b
2 changed files with 8 additions and 6 deletions

View File

@@ -1,5 +1,6 @@
#pragma once
#include "noncopyable.h"
#include <deque>
#include <ios>
#include <string>
@@ -10,7 +11,7 @@ namespace YAML
{
static const size_t MAX_PARSER_PUSHBACK = 8;
class Stream
class Stream: private noncopyable
{
public:
friend class StreamCharSource;