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

« back to all changes in this revision

Viewing changes to backend/wbpublic/objimpl/model/model_Object.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.model.h>
 
4
 
 
5
#include <grtpp_util.h>
 
6
 
 
7
#include "wbcanvas/model_object_impl.h"
 
8
 
 
9
//================================================================================
 
10
// model_Object
 
11
 
 
12
 
 
13
void model_Object::init()
 
14
{
 
15
}
 
16
 
 
17
void model_Object::set_data(ImplData *data)
 
18
{
 
19
  _data= data;
 
20
}
 
21
 
 
22
model_Object::~model_Object()
 
23
{
 
24
}
 
25