2014-04-06 20:49:35 -07:00
|
|
|
/* -*- Mode: c++; c-basic-offset: 4; tab-width: 20; indent-tabs-mode: nil; -*-
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#ifndef nsClipbard_h__
|
|
|
|
#define nsClipbard_h__
|
|
|
|
|
|
|
|
#include "nsIClipboard.h"
|
|
|
|
|
2015-03-21 09:28:04 -07:00
|
|
|
class nsClipboard final : public nsIClipboard
|
2014-04-06 20:49:35 -07:00
|
|
|
{
|
|
|
|
nsAutoString mClipboard;
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSICLIPBOARD
|
|
|
|
|
|
|
|
nsClipboard();
|
2015-03-10 05:44:02 -07:00
|
|
|
|
|
|
|
protected:
|
|
|
|
~nsClipboard() {}
|
2014-04-06 20:49:35 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|