先贴一部分://+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
#ifndef __LController__H___
#define __LController__H___class LController
{
public://[Construction of LController]
  LController();
  ~LController();//---------------------------------------------------------------------
public://[public members]
  /*表与表之间用*/
  String TableNames;//表名数组 [<ClassAttribute ID="C877139CE2624242B9FDA350D53B3046"/>]
  /**/
  int TableCount;//表个数 [<ClassAttribute ID="E39D52F4DADB4806B33B509EE7047843"/>]
  /**/
  LModal Modal;//模型 [<ClassAttribute ID="D4EDA1B90C894E62BE1D44672ECF35F9"/>]
  /**/
  LView  View;//视图 [<ClassAttribute ID="89FC9814CA9B40D6B4FBD7802BDB97C5"/>]private://[private members]protected://[protected members]//---------------------------------------------------------------------
public://[public operators]private://[private operators]protected://[protected operators]public://[events(funtion pointer)]
  /*由Modal内部插入产生的事件。基本上不会使用。*/
  MVCEvent Inserted;//已经插入 [<ClassOperation ID="64C2E3994D5E43CCB2C7402EBE6148EB"/>]
  /*由Modal内部删除产生的事件。*/
  MVCEvent Deleted;//已经删除 [<ClassOperation ID="D90941A6D5E74D6E8ABF5399751DA43C"/>]
  /*由Modal内部更新产生的事件。*/
  MVCEvent Updated;//已经更新 [<ClassOperation ID="D8955B406D144378AC58C586C2DBEE5A"/>]
  /*由Modal的联动性移动产生的事件。*/
  MVCEvent Moved;//已经移动 [<ClassOperation ID="42B5B5E08EA54B1382ADCE8FD2F08E72"/>]
  /*界面上用户请求插入时产生。*/
  MVCEvent OnViewInsert;//视图通知要插入 [<ClassOperation ID="E21B1A8DB8A84751B0F312818ACBA692"/>]
  /*界面上用户请求删除时产生。*/
  MVCEvent OnViewDelete;//视图通知要删除 [<ClassOperation ID="125C2DACD5964FA0A2B3A9AD8DD829FE"/>]
  /*界面上用户请求输入更行时产生。*/
  MVCEvent OnViewUpdate;//视图通知要更新 [<ClassOperation ID="420B3A4C2ACC459A93E742BF57DF43B0"/>]
  /*界面上用户请求移动时产生。*/
  MVCEvent OnViewMove;//视图通知要移动 [<ClassOperation ID="08237E449EFF4EA089470625BA0C3734"/>]};//end of class:LController#endif
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
#include "LController.h"
//---------------------------------------------------------------------
//[Construction of LController]
LController::LController()
{
TableCount=0;
Inserted=NULL;Deleted=NULL;Updated=NULL;Moved=NULL;OnViewInsert=NULL;OnViewDelete=NULL;OnViewUpdate=NULL;OnViewMove=NULL;
}
LController~LController()
{
}
//---------------------------------------------------------------------
/*由Modal内部插入产生的事件。基本上不会使用。*/
  LController::Inserted()//已经插入 [<ClassOperation ID="64C2E3994D5E43CCB2C7402EBE6148EB"/>]
{
}
/*由Modal内部删除产生的事件。*/
  LController::Deleted()//已经删除 [<ClassOperation ID="D90941A6D5E74D6E8ABF5399751DA43C"/>]
{
}
/*由Modal内部更新产生的事件。*/
  LController::Updated()//已经更新 [<ClassOperation ID="D8955B406D144378AC58C586C2DBEE5A"/>]
{
}
/*由Modal的联动性移动产生的事件。*/
  LController::Moved()//已经移动 [<ClassOperation ID="42B5B5E08EA54B1382ADCE8FD2F08E72"/>]
{
}
/*界面上用户请求插入时产生。*/
  LController::OnViewInsert()//视图通知要插入 [<ClassOperation ID="E21B1A8DB8A84751B0F312818ACBA692"/>]
{
}
/*界面上用户请求删除时产生。*/
  LController::OnViewDelete()//视图通知要删除 [<ClassOperation ID="125C2DACD5964FA0A2B3A9AD8DD829FE"/>]
{
}
/*界面上用户请求输入更行时产生。*/
  LController::OnViewUpdate()//视图通知要更新 [<ClassOperation ID="420B3A4C2ACC459A93E742BF57DF43B0"/>]
{
}
/*界面上用户请求移动时产生。*/
  LController::OnViewMove()//视图通知要移动 [<ClassOperation ID="08237E449EFF4EA089470625BA0C3734"/>]
{
}//end of class:LController
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
更多的代码在这里:
http://bizflash.net/AIcase/bbs/showtip.asp?ID=99这些代码都由软件生成的,各位有什么看法?
以后发布的软件就会有代码生成功能,而且我们保证对于个人用户(商业用户除外)都是免费的,没有限制的。