nsInstallationDirLayout.h (639B)
1 /* This Source Code Form is subject to the terms of the Mozilla Public 2 * License, v. 2.0. If a copy of the MPL was not distributed with this 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 #ifndef mozilla_nsInstDirLayout_h__ 5 #define mozilla_nsInstDirLayout_h__ 6 7 #include "nsIInstallationDirLayout.h" 8 9 namespace mozilla { 10 11 nsresult InitializeInstallationDirLayout(); 12 13 class InstallationDirLayout final : public nsIInstallationDirLayout { 14 NS_DECL_ISUPPORTS 15 NS_DECL_NSIINSTALLATIONDIRLAYOUT 16 public: 17 InstallationDirLayout() = default; 18 19 private: 20 ~InstallationDirLayout() = default; 21 }; 22 23 } // namespace mozilla 24 25 #endif