-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
issue #51 added a call result to external client response
- Loading branch information
Showing
7 changed files
with
82 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
40 changes: 40 additions & 0 deletions
40
source/w3cipa/w3cipaframework/include/w3c/voiceinteraction/ipa/CallResult.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
/* | ||
* IPA Reference Implementation: https://github.com/w3c/voiceinteraction | ||
* | ||
* Copyright (C) 2024 World Wide Web Consortium. All Rights Reserved. | ||
* | ||
* This work is distributed under the W3C Software and Document License [1] | ||
* in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even | ||
* the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | ||
* | ||
* [1] https://www.w3.org/Consortium/Legal/copyright-software | ||
*/ | ||
|
||
#if !defined(CALL_RESULT_H) | ||
#define CALL_RESULT_H | ||
|
||
namespace w3c { | ||
namespace voiceinteraction { | ||
namespace ipa { | ||
|
||
/** | ||
* Indicator to success or failure. | ||
* @author Dirk Schnelle-Walka | ||
*/ | ||
enum CallResult | ||
{ | ||
/** | ||
* A call has been completed successfully. | ||
*/ | ||
SUCCESS = 0, | ||
/** | ||
* There was an error in the call. | ||
*/ | ||
FAILURE = 1 | ||
}; | ||
|
||
} // namespace ipa | ||
} // namespace voiceinteraction | ||
} // namespace w3c | ||
|
||
#endif // !defined(CALL_RESULT_H) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters