GraphTool  1.0
Tool for analyzing and graphically visualizing code dependencies for Ericsson.
 All Classes Namespaces Functions Variables Typedefs Enumerations Pages
memory_layout.h
1 
4 #ifndef MEMORY_LAYOUT_H_
5 #define MEMORY_LAYOUT_H_
6 
7 class MemoryLayout {
8  public:
9  MemoryLayout();
10  ~MemoryLayout();
11 
12  unsigned int num_nodes();
13  void inc_num_nodes();
14 
15  private:
16  unsigned int num_nodes_;
17 };
18 
19 #endif
Definition: memory_layout.h:7