source: dev/trunk/ab5.0/abdev/ab_common/include/Environment.h@ 719

Last change on this file since 719 was 719, checked in by dai, 16 years ago
  • ab_breakpoint.tmpをテンポラリディレクトリに生成するようにした。
  • pgm.tmpをユーザ空間に生成するようにした。
  • GetUserAppDir/GetIdeUserAppDir/GetAbcUserAppDirの各メソッドを用意。用途別に呼び出し側の制御を分けた。
File size: 880 bytes
Line 
1#pragma once
2
3namespace ActiveBasic{ namespace Common{
4
5
6struct Platform
7{
8 enum EnumType
9 {
10 X86,
11 X64,
12 };
13};
14
15// ターゲット
16struct TargetModuleType
17{
18 enum EnumType
19 {
20 Exe = 0,
21 Dll,
22 Sll,
23 };
24};
25
26class Environment
27{
28 static std::string rootPath;
29 static bool isRemoveExternal;
30public:
31 static void SetAbdevRootPath( const std::string &rootPath );
32
33 static const std::string GetAbdevRootPath();
34
35 static const std::string GetUserAppDir();
36
37 static const std::string GetAbdevSystemDirPath()
38 {
39 return GetAbdevRootPath() + "\\system";
40 }
41
42 static const std::string GetCompilerExePath( Platform::EnumType platform );
43
44 static bool IsRemoveExternal()
45 {
46 return isRemoveExternal;
47 }
48 static void SetRemoveExternalMark( bool isRemoveExternalMark )
49 {
50 Environment::isRemoveExternal = isRemoveExternalMark;
51 }
52};
53
54
55}}
Note: See TracBrowser for help on using the repository browser.