source: dev/trunk/abdev/BasicCompiler_Common/src/ObjectModule.cpp@ 274

Last change on this file since 274 was 274, checked in by dai_9181, 17 years ago
File size: 267 bytes
Line 
1#include "stdafx.h"
2
3#include <Compiler.h>
4
5void ObjectModule::StaticLink( ObjectModule &objectModule )
6{
7 // メタ情報を結合
8 meta.StaticLink( objectModule.meta, dataTable.GetSize() );
9
10 // データテーブルを結合
11 dataTable.Add( objectModule.dataTable );
12}
Note: See TracBrowser for help on using the repository browser.