Changeset 71 in dev for BasicCompiler_Common/common.h


Ignore:
Timestamp:
Mar 15, 2007, 5:00:34 AM (17 years ago)
Author:
dai_9181
Message:

Parameter.cpp→ParamImpl.cpp
CParameter→ParamImpl

Type.cpp、Type.hを用意した。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • BasicCompiler_Common/common.h

    r70 r71  
    1111#include <shlobj.h>
    1212#include <vector>
     13#include <string>
    1314
    1415//boost libraries
     
    1617
    1718#define foreach BOOST_FOREACH
     19
     20using namespace std;
    1821
    1922#ifdef _AMD64_
     
    140143
    141144
    142 //クラス管理用のクラス
     145// クラス管理用のクラス
    143146#include "Class.h"
    144147
    145 //列挙体管理用のクラス
     148// 列挙体管理用のクラス
    146149#include "Enum.h"
    147150
    148 //定数管理用のクラス
     151// 定数管理用のクラス
    149152#include "Const.h"
     153
     154// パラメータ管理用のクラス
     155#include "Parameter.h"
     156
    150157
    151158
     
    209216};
    210217
    211 //パラメータ
    212218struct PARAMETER_INFO{
    213219    char *name;
     
    244250    int RealParmNum;
    245251    int RealSecondParmNum;
     252
     253    /*
     254    //パラメータ
     255    Parameters params;
     256    int SecondParmNum;
     257    Parameters realParams;
     258    int RealSecondParmNum;*/
    246259
    247260    //戻り値
Note: See TracChangeset for help on using the changeset viewer.