Home | History | Annotate | Download | only in google

Lines Matching refs:OutputString

63 // definitions of OutputString methods -- see output_string_types.h for some
66 class OutputString : public OutputStringInterface {
68 explicit OutputString(StringClass* impl) : impl_(impl) { }
70 virtual ~OutputString() { }
72 virtual OutputString& append(const char* s, size_t n) {
98 OutputString(const OutputString&);
99 void operator=(const OutputString&);
102 // Don't allow the OutputString template to be based upon a pointer to
104 // lack any functions expected of an OutputString.
105 template<> class OutputString<OutputStringInterface> { };