1 /***********************************************************************************************************************************
2 GCS Storage File Write
3 ***********************************************************************************************************************************/
4 #ifndef STORAGE_GCS_WRITE_H
5 #define STORAGE_GCS_WRITE_H
6 
7 #include "storage/gcs/storage.intern.h"
8 #include "storage/write.h"
9 
10 /***********************************************************************************************************************************
11 Constructors
12 ***********************************************************************************************************************************/
13 StorageWrite *storageWriteGcsNew(StorageGcs *storage, const String *name, size_t chunkSize);
14 
15 #endif
16