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

« back to all changes in this revision

Viewing changes to backend/wbpublic/objimpl/workbench.logical/workbench_logical_Diagram.cpp

  • 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
#include "stdafx.h"
 
2
 
 
3
#include <grts/structs.workbench.logical.h>
 
4
 
 
5
#include <grtpp_util.h>
 
6
 
 
7
 
 
8
//================================================================================
 
9
// workbench_logical_Diagram
 
10
 
 
11
 
 
12
class workbench_logical_Diagram::ImplData
 
13
{
 
14
};
 
15
 
 
16
 
 
17
void workbench_logical_Diagram::init()
 
18
{
 
19
  //if (!_data) _data= new workbench_logical_Diagram::ImplData();
 
20
}
 
21
 
 
22
void workbench_logical_Diagram::set_data(ImplData *data)
 
23
{
 
24
}
 
25
 
 
26
 
 
27
workbench_logical_Diagram::~workbench_logical_Diagram()
 
28
{
 
29
  delete _data;
 
30
}
 
31
 
 
32
 
 
33
model_LayerRef workbench_logical_Diagram::placeNewLayer(double x, double y, double width, double height, const std::string &name)
 
34
{
 
35
  // add code here
 
36
  return model_LayerRef();
 
37
}
 
38
 
 
39
 
 
40
 
 
41
 
 
42