Line data Source code
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 297325 : RouteTable(DB *db, const std::string &name) : DBTable(db, name) { } 15 : 16 : private: 17 : DISALLOW_COPY_AND_ASSIGN(RouteTable); 18 : }; 19 : 20 : #endif