summaryrefslogtreecommitdiff
path: root/src/mscorlib/corefx/System/Globalization/CalendarData.Unix.cs
blob: bd619dd01e32102110521041eec596f413e9b41d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System;
using System.Runtime.InteropServices;
using System.Runtime.CompilerServices;
using System.Diagnostics.Contracts;
using System.Collections.Generic;

namespace System.Globalization
{
    internal partial class CalendarData
    {
        private bool LoadCalendarDataFromSystem(String localeName, CalendarId calendarId)
        {
            // TODO: Implement this.
            throw new NotImplementedException();            
        }

        // Get native two digit year max
        internal static int GetTwoDigitYearMax(CalendarId calendarId)
        {
            // TODO: Implement this.
            throw new NotImplementedException();            
        }

        internal static CalendarData GetCalendarData(CalendarId calendarId)
        {
            // TODO: Implement this.
            throw new NotImplementedException();            
        }

        // Call native side to figure out which calendars are allowed
        internal static int GetCalendars(String localeName, bool useUserOverride, CalendarId[] calendars)
        {
            // TODO: Implement this.
            throw new NotImplementedException();            
        }

        private static bool SystemSupportsTaiwaneseCalendar()
        {
            // TODO: Implement this.
            throw new NotImplementedException();            
        }

        // PAL Layer ends here
    }
}