Ignore:
Timestamp:
May 19, 2008, 6:17:02 PM (16 years ago)
Author:
dai_9181
Message:

Projectクラスをリファクタリング中。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ab5.0/abdev/abdev/include/ProjectManager/ProjectManager.h

    r619 r620  
    88public:
    99
     10    Project()
     11        : workDir( "" )
     12    {
     13    }
     14
    1015    void Open( char *path );
    1116    bool Close();
     
    1419    {
    1520        return name;
     21    }
     22
     23    const Jenga::Common::Directory &GetWorkDir() const
     24    {
     25        return workDir;
    1626    }
    1727
     
    2535        return moduleType;
    2636    }
    27 
    28     char dir[MAX_PATH];
    2937
    3038    DWORD dwVersion;
     
    6371private:
    6472    std::string name;
     73    Jenga::Common::Directory workDir;
    6574    ActiveBasic::Common::TargetModuleType::EnumType moduleType;
    6675};
Note: See TracChangeset for help on using the changeset viewer.