This file contains hidden or 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
namespace Controls | |
{ | |
using Windows.Foundation; | |
using Windows.UI.Xaml; | |
using Windows.UI.Xaml.Controls; | |
using Windows.UI.Xaml.Markup; | |
/// <summary> | |
/// Displays a loading indicator. | |
/// </summary> |
This file contains hidden or 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
using System; | |
namespace SvgParser | |
{ | |
/// <summary> | |
/// Provides methods to convert a string to a double precision floating | |
/// point number. | |
/// </summary> | |
public static class StringToDouble | |
{ |
This file contains hidden or 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
#include <cstdlib> | |
#include <iostream> | |
#include <locale> | |
#include <string> | |
#include <vector> | |
bool is_whitespace(char value) | |
{ | |
// Values are defined in the SVG specification. | |
return (value == '0x9') || |