Ignore:
Timestamp:
May 1, 2008, 11:03:14 PM (16 years ago)
Author:
dai_9181
Message:

ヘッダファイルを整理中

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ab5.0/abdev/BasicCompiler_Common/src/Type.cpp

    r465 r523  
    22
    33#include <Class.h>
    4 
    5 using namespace std;
    64
    75const int Type::basicTypeList[] = {
     
    2725};
    2826
    29 const string Type::basicTypeNameList[] = {
     27const std::string Type::basicTypeNameList[] = {
    3028    "Byte",
    3129    "SByte",
     
    5351}
    5452
    55 bool Type::StringToBasicType( const string &typeName, int &basicType ){
     53bool Type::StringToBasicType( const std::string &typeName, int &basicType ){
    5654    for( int i=0; ; i++ ){
    5755        if( basicTypeList[i] == DEF_NON ){
     
    615613
    616614
    617 const string BlittableType::GetCreateStaticMethodFullName() const
     615const std::string BlittableType::GetCreateStaticMethodFullName() const
    618616{
    619617    return pClass->GetNamespaceScopes().ToString() + "." + pClass->GetName() + "._Create";
Note: See TracChangeset for help on using the changeset viewer.