mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-08 23:10:40 +00:00
ICU-2424 fixes for windows
X-SVN-Rev: 13863
This commit is contained in:
parent
fd0010d370
commit
3d2fe15a68
2 changed files with 8 additions and 8 deletions
|
@ -74,7 +74,7 @@ public:
|
|||
* @internal
|
||||
* @deprecated ICU 2.4. This class may be removed or modified.
|
||||
*/
|
||||
class Ecliptic {
|
||||
class U_I18N_API Ecliptic {
|
||||
public:
|
||||
/**
|
||||
* Constructs an Ecliptic coordinate object.
|
||||
|
@ -141,7 +141,7 @@ public:
|
|||
* @internal
|
||||
* @deprecated ICU 2.4. This class may be removed or modified.
|
||||
*/
|
||||
class Equatorial {
|
||||
class U_I18N_API Equatorial {
|
||||
public:
|
||||
/**
|
||||
* Constructs an Equatorial coordinate object.
|
||||
|
@ -215,7 +215,7 @@ public:
|
|||
* @internal
|
||||
* @deprecated ICU 2.4. This class may be removed or modified.
|
||||
*/
|
||||
class Horizon {
|
||||
class U_I18N_API Horizon {
|
||||
public:
|
||||
/**
|
||||
* Constructs a Horizon coordinate object.
|
||||
|
@ -681,7 +681,7 @@ public:
|
|||
Equatorial* getSunPosition();
|
||||
|
||||
public:
|
||||
class SolarLongitude {
|
||||
class U_I18N_API SolarLongitude {
|
||||
public:
|
||||
SolarLongitude(double l)
|
||||
: value(l) { }
|
||||
|
@ -1080,7 +1080,7 @@ public:
|
|||
*/
|
||||
double getMoonPhase();
|
||||
|
||||
class MoonAge {
|
||||
class U_I18N_API MoonAge {
|
||||
public:
|
||||
MoonAge(double l)
|
||||
: value(l) { }
|
||||
|
@ -1145,7 +1145,7 @@ public:
|
|||
//-------------------------------------------------------------------------
|
||||
|
||||
// private
|
||||
class AngleFunc {
|
||||
class U_I18N_API AngleFunc {
|
||||
public:
|
||||
virtual double eval(CalendarAstronomer&) = 0;
|
||||
};
|
||||
|
@ -1154,7 +1154,7 @@ public:
|
|||
UDate timeOfAngle(AngleFunc& func, double desired,
|
||||
double periodDays, double epsilon, UBool next);
|
||||
|
||||
class CoordFunc {
|
||||
class U_I18N_API CoordFunc {
|
||||
public:
|
||||
virtual Equatorial* eval(CalendarAstronomer&) = 0;
|
||||
};
|
||||
|
|
|
@ -247,7 +247,7 @@ class U_I18N_API IslamicCalendar : public Calendar {
|
|||
* @param year The hijri year
|
||||
* @param year The hijri month, 0-based
|
||||
*/
|
||||
int32_t monthStart(int year, int month) const;
|
||||
int32_t monthStart(int32_t year, int32_t month) const;
|
||||
|
||||
/**
|
||||
* Find the day number on which a particular month of the true/lunar
|
||||
|
|
Loading…
Add table
Reference in a new issue