From 960bb20ccd3c375bcfc8b642fcbe89feaf143b22 Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Mon, 2 Jul 2012 08:36:04 +0000 Subject: only add PasteIt, not adapted git-svn-id: http://svn.miranda-ng.org/main/trunk@712 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/PasteIt/PasteToWeb1.h | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 plugins/PasteIt/PasteToWeb1.h (limited to 'plugins/PasteIt/PasteToWeb1.h') diff --git a/plugins/PasteIt/PasteToWeb1.h b/plugins/PasteIt/PasteToWeb1.h new file mode 100644 index 0000000000..b1611855d6 --- /dev/null +++ b/plugins/PasteIt/PasteToWeb1.h @@ -0,0 +1,40 @@ +/* +Paste It plugin +Copyright (C) 2011 Krzysztof Kral + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation version 2 +of the License. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program. If not, see . +*/ + +#pragma once +#include "pastetoweb.h" +class PasteToWeb1 : + public PasteToWeb +{ +protected: + virtual void SendToServer(std::wstring str, std::wstring fileName, std::wstring format); + static PasteFormat formats[]; + static PasteFormat defFormats[]; +public: + PasteToWeb1(); + virtual ~PasteToWeb1(); + virtual TCHAR* GetName() + { + return _T("pastebin.com"); + } + virtual void ConfigureSettings(); + virtual std::list GetFormats(); + virtual std::list GetDefFormats(); + std::wstring GetUserKey(std::wstring& user, std::wstring& password); +}; + -- cgit v1.2.3