BusBoy  2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
DataFileSink.h
Go to the documentation of this file.
1 
17 #ifndef __BUSBOY_DATA_FILE_SINK_H__
18 #define __BUSBOY_DATA_FILE_SINK_H__
19 
20 namespace BUSBOY {
21 
22 
23 class DataFileSink {
24 
25  public:
26 
30  virtual void write(char* buf, size_t num) =0;
31 
32  virtual void close() =0;
33 
34  virtual bool isClosed() const =0;
35 
36 };
37 
38 }
39 #endif
40 
41 

Copyright 2014 Google Inc. All rights reserved.