Skip to content

Commit 9e0f78a

Browse files
committed
implement putRow/getRow
1 parent 31734ff commit 9e0f78a

File tree

3 files changed

+575
-78
lines changed

3 files changed

+575
-78
lines changed

src/ContainerInfo.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@ class ContainerInfo {
5252

5353
public:
5454
ContainerInfo(GSContainerInfo *containerInfo);
55-
ContainerInfo(const GSChar* name = NULL, const GSColumnInfo* props = NULL,
56-
int propsCount = 0, GSContainerType type = GS_CONTAINER_COLLECTION,
57-
bool row_key = true, ExpirationInfo* expiration = NULL);
55+
ContainerInfo(const GSChar* name, const GSColumnInfo* props,
56+
int propsCount, GSContainerType type,
57+
bool row_key, ExpirationInfo* expiration);
5858
~ContainerInfo();
5959

6060
void set_name(GSChar* containerName);

src/StoreFactory.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ class StoreFactory {
4242
~StoreFactory();
4343
void close(GSBool allRelated = GS_FALSE);
4444
static StoreFactory* get_instance();
45-
Store* get_store(const char* host=NULL, int32_t port=0, const char* cluster_name=NULL,
46-
const char* database=NULL, const char* username=NULL, const char* password=NULL,
47-
const char* notification_member=NULL, const char* notification_provider=NULL);
45+
Store* get_store(const char* host, int32_t port, const char* cluster_name,
46+
const char* database, const char* username, const char* password,
47+
const char* notification_member, const char* notification_provider);
4848
string get_version();
4949

5050
private:

0 commit comments

Comments
 (0)