1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/intl/locale/src/windows/nsCollationWin.h Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,35 @@ 1.4 + 1.5 +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- 1.6 + * 1.7 + * This Source Code Form is subject to the terms of the Mozilla Public 1.8 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.9 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.10 +#ifndef nsCollationWin_h__ 1.11 +#define nsCollationWin_h__ 1.12 + 1.13 + 1.14 +#include "nsICollation.h" 1.15 +#include "nsCollation.h" // static library 1.16 +#include "plstr.h" 1.17 + 1.18 + 1.19 + 1.20 +class nsCollationWin MOZ_FINAL : public nsICollation { 1.21 + 1.22 +protected: 1.23 + nsCollation *mCollation; // XP collation class 1.24 + uint32_t mLCID; // Windows platform locale ID 1.25 + 1.26 +public: 1.27 + nsCollationWin(); 1.28 + ~nsCollationWin(); 1.29 + 1.30 + // nsISupports interface 1.31 + NS_DECL_ISUPPORTS 1.32 + 1.33 + // nsICollation interface 1.34 + NS_DECL_NSICOLLATION 1.35 + 1.36 +}; 1.37 + 1.38 +#endif /* nsCollationWin_h__ */