summaryrefslogtreecommitdiff
path: root/ovsdb/column.h
diff options
context:
space:
mode:
authorBen Pfaff <blp@nicira.com>2010-02-10 15:37:52 -0800
committerBen Pfaff <blp@nicira.com>2010-02-15 11:31:05 -0800
commit58985e09eafe83a7fbe9c85626e44abe9d9eca8c (patch)
treee6a8b8157ebf489a8f7d97af5bcdb2910949fabe /ovsdb/column.h
parente5125481cf98eebb4ff49c7881410493629c9ec0 (diff)
downloadopenvswitch-58985e09eafe83a7fbe9c85626e44abe9d9eca8c.tar.gz
ovsdb: Add functions to clone schemas.
These will be used by an upcoming commit.
Diffstat (limited to 'ovsdb/column.h')
-rw-r--r--ovsdb/column.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/ovsdb/column.h b/ovsdb/column.h
index 5fd39ae10..eb1a3834a 100644
--- a/ovsdb/column.h
+++ b/ovsdb/column.h
@@ -1,4 +1,4 @@
-/* Copyright (c) 2009 Nicira Networks
+/* Copyright (c) 2009, 2010 Nicira Networks
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -47,6 +47,7 @@ enum {
struct ovsdb_column *ovsdb_column_create(
const char *name, const char *comment, bool mutable, bool persistent,
const struct ovsdb_type *);
+struct ovsdb_column *ovsdb_column_clone(const struct ovsdb_column *);
void ovsdb_column_destroy(struct ovsdb_column *);
struct ovsdb_error *ovsdb_column_from_json(const struct json *,