提出確認書チェッカ:-cオプションが不要になったので削除。

git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlToolsRED@53 7061adef-622a-194b-ae81-725974e89856
This commit is contained in:
nishikawa_takeshi 2008-11-14 06:48:13 +00:00
parent 0099945087
commit 3f98d32113
5 changed files with 0 additions and 12 deletions

View File

@ -342,11 +342,6 @@ System::Int32 parseOption( array<System::String ^> ^args, SheetCheckerContext ^c
context->bTadVersion = true;
numopt++;
}
else if( args[i]->StartsWith( "-c" ) )
{
context->bConsole = true;
numopt++;
}
else if( !args[i]->StartsWith( "-" ) ) // オプションでない引数のindexを記録
{
indexList->Add(i);

View File

@ -28,7 +28,6 @@ private:
System::Boolean ^hbSubmitVersion; // オプションフラグ
System::Boolean ^hbResult;
System::Boolean ^hbTadVersion;
System::Boolean ^hbConsole;
SheetCheckerError ^hErrorCode; // エラー情報
public:
SheetCheckerContext()
@ -36,7 +35,6 @@ public:
this->hbSubmitVersion = gcnew System::Boolean(false);
this->hbResult = gcnew System::Boolean(false);
this->hbTadVersion = gcnew System::Boolean(false);
this->hbConsole = gcnew System::Boolean(false);
this->hErrorCode = gcnew SheetCheckerError( SheetCheckerError::NOERROR );
}
property System::Boolean bSubmitVersion
@ -54,11 +52,6 @@ public:
void set( System::Boolean flg ){ this->hbTadVersion = gcnew System::Boolean(flg); }
System::Boolean get(){ return *this->hbTadVersion; }
};
property System::Boolean bConsole
{
void set( System::Boolean flg ){ this->hbConsole = gcnew System::Boolean(flg); }
System::Boolean get(){ return *this->hbConsole; }
};
property SheetCheckerError ErrorCode
{
void set( SheetCheckerError code ){ this->hErrorCode = gcnew SheetCheckerError(code); }