Changeset 719 in dev for trunk/ab5.0/abdev/ab_common


Ignore:
Timestamp:
Aug 13, 2008, 11:01:29 PM (16 years ago)
Author:
dai
Message:
  • ab_breakpoint.tmpをテンポラリディレクトリに生成するようにした。
  • pgm.tmpをユーザ空間に生成するようにした。
  • GetUserAppDir/GetIdeUserAppDir/GetAbcUserAppDirの各メソッドを用意。用途別に呼び出し側の制御を分けた。
Location:
trunk/ab5.0/abdev/ab_common
Files:
2 edited

Legend:

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

    r637 r719  
    3333    static const std::string GetAbdevRootPath();
    3434
     35    static const std::string GetUserAppDir();
     36
    3537    static const std::string GetAbdevSystemDirPath()
    3638    {
  • trunk/ab5.0/abdev/ab_common/src/Environment.cpp

    r637 r719  
    1818    return rootPath;
    1919}
     20
     21const std::string Environment::GetUserAppDir()
     22{
     23    return Jenga::Common::Environment::GetUserAppDir() + "\\ActiveBasic";
     24}
     25
    2026const std::string Environment::GetCompilerExePath( Platform::EnumType platform )
    2127{
Note: See TracChangeset for help on using the changeset viewer.