OpenSDN source code
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
vm_stat_data.h
Go to the documentation of this file.
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:
13  vm_stat_(obj) {
14  }
15 
16  VmStat *vm_stat() const { return vm_stat_; }
17 private:
20 };
21 #endif // vnsw_agent_vm_stat_data_h
VmStatData(VmStat *obj)
Definition: vm_stat_data.h:12
VmStat * vm_stat_
Definition: vm_stat_data.h:18
Definition: vm_stat.h:17
DISALLOW_COPY_AND_ASSIGN(VmStatData)
VmStat * vm_stat() const
Definition: vm_stat_data.h:16