From 10265aa56b22ac4f04e7ba08330138e4507534e4 Mon Sep 17 00:00:00 2001 From: Joshua Haberman Date: Fri, 15 Jul 2011 12:05:43 -0700 Subject: Directory restructure. Includes are now via upb/foo.h. Files specific to the protobuf format are now in upb/pb (the core library is concerned with message definitions, handlers, and byte streams, but knows nothing about any particular serializationf format). --- src/upb_textprinter.h | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 src/upb_textprinter.h (limited to 'src/upb_textprinter.h') diff --git a/src/upb_textprinter.h b/src/upb_textprinter.h deleted file mode 100644 index 2d70d2e..0000000 --- a/src/upb_textprinter.h +++ /dev/null @@ -1,31 +0,0 @@ -/* - * upb - a minimalist implementation of protocol buffers. - * - * Copyright (c) 2009 Google Inc. See LICENSE for details. - * Author: Josh Haberman - */ - -#ifndef UPB_TEXT_H_ -#define UPB_TEXT_H_ - -#include "upb_bytestream.h" -#include "upb_handlers.h" - -#ifdef __cplusplus -extern "C" { -#endif - -struct _upb_textprinter; -typedef struct _upb_textprinter upb_textprinter; - -upb_textprinter *upb_textprinter_new(); -void upb_textprinter_free(upb_textprinter *p); -void upb_textprinter_reset(upb_textprinter *p, upb_bytesink *sink, - bool single_line); -upb_mhandlers *upb_textprinter_reghandlers(upb_handlers *h, upb_msgdef *m); - -#ifdef __cplusplus -} /* extern "C" */ -#endif - -#endif /* UPB_TEXT_H_ */ -- cgit v1.2.3