mirror of
https://github.com/Microsoft/calculator.git
synced 2025-07-16 02:02:51 -07:00
* Optimize BitFlipPanel * remove namespace in cpp file * improve localization + add tests * add helper to compare ivector * Modify how the control manages AutomationProperties::Name
17 lines
306 B
C++
17 lines
306 B
C++
#pragma once
|
|
|
|
namespace CalculatorApp
|
|
{
|
|
namespace Common
|
|
{
|
|
public
|
|
enum class BitLength : int
|
|
{
|
|
BitLengthUnknown = -1,
|
|
BitLengthByte = 8,
|
|
BitLengthWord = 16,
|
|
BitLengthDWord = 32,
|
|
BitLengthQWord = 64,
|
|
};
|
|
}
|
|
}
|