Line data Source code
1 : /* 2 : * Copyright (c) 2016 Juniper Networks, Inc. All rights reserved. 3 : */ 4 : 5 : #ifndef vnsw_agent_bgp_as_service_index_resource_hpp 6 : #define vnsw_agent_bgp_as_service_index_resource_hpp 7 : 8 : /* 9 : * bgp index allocator using index_vector 10 : */ 11 : #include <oper/interface.h> 12 : #include <resource_manager/index_resource.h> 13 : #include <resource_manager/resource_backup.h> 14 : 15 : class ResourceManager; 16 : class ResourceKey; 17 : 18 : class BgpAsServiceIndexResourceKey : public IndexResourceKey { 19 : public: 20 : BgpAsServiceIndexResourceKey(ResourceManager *rm, 21 : const boost::uuids::uuid &uuid_); 22 0 : virtual ~BgpAsServiceIndexResourceKey() {}; 23 : virtual void Backup(ResourceData *data, uint16_t op); 24 : virtual bool IsLess(const ResourceKey &rhs) const; 25 : private: 26 : boost::uuids::uuid uuid_; 27 : }; 28 : #endif