Line data Source code
1 : /* 2 : * Copyright (c) 2013 Juniper Networks, Inc. All rights reserved. 3 : */ 4 : 5 : #ifndef vnsw_agent_vm_stat_data_h 6 : #define vnsw_agent_vm_stat_data_h 7 : 8 : class VmStat; 9 : 10 : class VmStatData { 11 : public: 12 0 : VmStatData(VmStat *obj): 13 0 : vm_stat_(obj) { 14 0 : } 15 : 16 0 : VmStat *vm_stat() const { return vm_stat_; } 17 : private: 18 : VmStat *vm_stat_; 19 : DISALLOW_COPY_AND_ASSIGN(VmStatData); 20 : }; 21 : #endif // vnsw_agent_vm_stat_data_h