diff options
author | lloyd <[email protected]> | 2011-04-08 18:07:12 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2011-04-08 18:07:12 +0000 |
commit | 3b66bfd4da97189ec275e5f85b9f85009d3f8370 (patch) | |
tree | 2f8604f15164f792069db465f9b07e55ada79761 /doc/examples/gtk/gtk_ui.h | |
parent | fc62f7f284387a180e42402e8706965a666efba7 (diff) |
Drop the GTK example; it probably makes more sense to use threads
for things like this, and the User_Interface class is going to die
as soon as I can manage it, anyway.
Diffstat (limited to 'doc/examples/gtk/gtk_ui.h')
-rw-r--r-- | doc/examples/gtk/gtk_ui.h | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/doc/examples/gtk/gtk_ui.h b/doc/examples/gtk/gtk_ui.h deleted file mode 100644 index 065a4f76b..000000000 --- a/doc/examples/gtk/gtk_ui.h +++ /dev/null @@ -1,27 +0,0 @@ -/* -* (C) 2006 Jack Lloyd -* -* Distributed under the terms of the Botan license -*/ - -#ifndef BOTAN_EXT_GTK_UI__ -#define BOTAN_EXT_GTK_UI__ - -#include <botan/ui.h> -#include <gtk/gtk.h> - -/* -* GTK+ Passphrase Callback Object -*/ -class GTK_UI : public Botan::User_Interface - { - public: - std::string get_passphrase(const std::string&, const std::string&, - UI_Result&) const; - - std::string get_passphrase(const std::string&, UI_Result&) const; - - static void callback(GtkWidget*, gpointer); - }; - -#endif |