~ubuntu-branches/ubuntu/quantal/mysql-workbench/quantal

« back to all changes in this revision

Viewing changes to backend/wbprivate/model/wb_overview_diagram.h

  • Committer: Package Import Robot
  • Author(s): Dmitry Smirnov
  • Date: 2012-03-01 21:57:30 UTC
  • Revision ID: package-import@ubuntu.com-20120301215730-o7y8av8y38n162ro
Tags: upstream-5.2.38+dfsg
ImportĀ upstreamĀ versionĀ 5.2.38+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef _WB_OVERVIEW_DIAGRAM_H_
 
2
#define _WB_OVERVIEW_DIAGRAM_H_
 
3
 
 
4
#include "workbench/wb_overview.h"
 
5
/**
 
6
 * @file  wb_overview_diagram.h
 
7
 * @brief 
 
8
 */
 
9
 
 
10
 
 
11
namespace wb
 
12
{
 
13
  class DiagramListNode : public OverviewBE::ContainerNode
 
14
  {
 
15
    std::string id;
 
16
    model_ModelRef _model;
 
17
 
 
18
  public:
 
19
    DiagramListNode(model_ModelRef model);
 
20
 
 
21
    virtual void refresh_children();
 
22
 
 
23
    virtual std::string get_unique_id() { return id; }
 
24
  };
 
25
};
 
26
 
 
27
#endif /* _WB_OVERVIEW_DIAGRAM_H_ */