X-Git-Url: http://git.osdn.net/view?a=blobdiff_plain;f=SlimDXc_Jun2010%28VC%2B%2B2008%29%2Fsource%2FResult.h;fp=SlimDXc_Jun2010%28VC%2B%2B2008%29%2Fsource%2FResult.h;h=0000000000000000000000000000000000000000;hb=d3453b257c2faf4db202d38666a872929ff220cd;hp=6b9cd3bd4e3e3ab7c108ccdcc667b25d0e7f87ef;hpb=1c2eac207d4963c6bc170b3f7fbe0feeffcd17e0;p=dtxmania%2Fdtxmania.git diff --git a/SlimDXc_Jun2010(VC++2008)/source/Result.h b/SlimDXc_Jun2010(VC++2008)/source/Result.h deleted file mode 100644 index 6b9cd3bd..00000000 --- a/SlimDXc_Jun2010(VC++2008)/source/Result.h +++ /dev/null @@ -1,178 +0,0 @@ -/* -* Copyright (c) 2007-2010 SlimDX Group -* -* Permission is hereby granted, free of charge, to any person obtaining a copy -* of this software and associated documentation files (the "Software"), to deal -* in the Software without restriction, including without limitation the rights -* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -* copies of the Software, and to permit persons to whom the Software is -* furnished to do so, subject to the following conditions: -* -* The above copyright notice and this permission notice shall be included in -* all copies or substantial portions of the Software. -* -* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -* THE SOFTWARE. -*/ -#pragma once - -namespace SlimDX -{ - public ref class ResultInfo - { - public: - System::String^ Name; - System::String^ Description; - System::Collections::SortedList^ Data; - }; - - /// - /// Represents the result of a method or operation. - /// - /// HRESULT - public value class Result : System::IEquatable - { - int m_Code; - ResultInfo^ m_Info; - - [System::ThreadStatic] - static Result m_Last; - - [System::ThreadStatic] - static int m_LastCode; - - generic - [System::Diagnostics::DebuggerNonUserCode] - static void Throw( Object^ dataKey, Object^ dataValue ); - - internal: - Result( int hr ); - - [System::Diagnostics::Conditional( "DEBUG" )] - static void BreakIfDebugging(); - - generic - [System::Diagnostics::DebuggerNonUserCode] - static Result Fail( int hr, Object^ dataKey, Object^ dataValue ); - - generic - [System::Diagnostics::DebuggerNonUserCode] - static Result Record( int hr, Object^ dataKey, Object^ dataValue ); - - generic - [System::Diagnostics::DebuggerNonUserCode] - static Result Record( int hr, bool failed, Object^ dataKey, Object^ dataValue ); - - public: - /// - /// Gets the actual HRESULT result code. - /// - property int Code - { - int get(); - }; - - /// - /// Gets the name of the result. - /// - property System::String^ Name - { - System::String^ get(); - }; - - /// - /// Gets the friendly description of the result. - /// - property System::String^ Description - { - System::String^ get(); - }; - - property System::Collections::SortedList^ Data - { - System::Collections::SortedList^ get(); - - private: - void set( System::Collections::SortedList^ value ); - } - - /// - /// Gets a value indicating whether or not the result represents a successful operation. - /// - property bool IsSuccess - { - bool get(); - }; - - /// - /// Gets a value indicating whether or not the result represents a failed operation. - /// - property bool IsFailure - { - bool get(); - }; - - /// - /// Gets the last recorded result of a method or operation. - /// - static property Result Last - { - Result get(); - }; - - /// - /// Tests for equality between two results. - /// - /// The first value to compare. - /// The second value to compare. - /// true if has the same value as ; otherwise, false. - static bool operator == ( Result left, Result right ); - - /// - /// Tests for inequality between two results. - /// - /// The first value to compare. - /// The second value to compare. - /// true if has a different value than ; otherwise, false. - static bool operator != ( Result left, Result right ); - - /// - /// Converts the value of the result to its equivalent string representation. - /// - /// The string representation of the value of this instance. - virtual System::String^ ToString() override; - - /// - /// Returns the hash code for this instance. - /// - /// A 32-bit signed integer hash code. - virtual int GetHashCode() override; - - /// - /// Returns a value indicating whether this instance is equal to the specified object. - /// - /// An object to compare with this instance. - /// true if has the same value as this instance; otherwise, false. - virtual bool Equals( System::Object^ obj ) override; - - /// - /// Returns a value indicating whether this instance is equal to the specified result. - /// - /// A to compare with this instance. - /// true if has the same value as this instance; otherwise, false. - virtual bool Equals( Result other ); - - /// - /// Returns a value indicating whether the two results are equivalent. - /// - /// The first value to compare. - /// The second value to compare. - /// true if has the same value as ; otherwise, false. - static bool Equals( Result% value1, Result% value2 ); - }; -} \ No newline at end of file