nsLayoutDebugCLH.h (707B)
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ 2 // vim:cindent:tabstop=4:expandtab:shiftwidth=4: 3 /* This Source Code Form is subject to the terms of the Mozilla Public 4 * License, v. 2.0. If a copy of the MPL was not distributed with this 5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 6 7 #ifndef nsLayoutDebugCLH_h_ 8 #define nsLayoutDebugCLH_h_ 9 10 #include "nsICommandLineHandler.h" 11 #define ICOMMANDLINEHANDLER nsICommandLineHandler 12 13 class nsLayoutDebugCLH : public ICOMMANDLINEHANDLER { 14 public: 15 nsLayoutDebugCLH(); 16 17 NS_DECL_ISUPPORTS 18 NS_DECL_NSICOMMANDLINEHANDLER 19 20 protected: 21 virtual ~nsLayoutDebugCLH(); 22 }; 23 24 #endif /* !defined(nsLayoutDebugCLH_h_) */