OpenSDN source code
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
table.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2013 Juniper Networks, Inc. All rights reserved.
3  */
4 
5 #ifndef ctrlplane_table_h
6 #define ctrlplane_table_h
7 
8 #include "db/db_table.h"
9 
10 // Table interface.
11 // A Routing table is part of a database.
12 class RouteTable : public DBTable {
13 public:
14  RouteTable(DB *db, const std::string &name) : DBTable(db, name) { }
15 
16 private:
18 };
19 
20 #endif
RouteTable(DB *db, const std::string &name)
Definition: table.h:14
Definition: db.h:24
DISALLOW_COPY_AND_ASSIGN(RouteTable)
const std::string & name() const
Definition: db_table.h:110