aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/libstate/init.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libstate/init.h')
-rw-r--r--src/lib/libstate/init.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/src/lib/libstate/init.h b/src/lib/libstate/init.h
deleted file mode 100644
index 46bcc66fa..000000000
--- a/src/lib/libstate/init.h
+++ /dev/null
@@ -1,31 +0,0 @@
-/*
-* Library Initialization
-* (C) 1999-2008 Jack Lloyd
-*
-* Botan is released under the Simplified BSD License (see license.txt)
-*/
-
-#ifndef BOTAN_LIBRARY_INITIALIZER_H__
-#define BOTAN_LIBRARY_INITIALIZER_H__
-
-#include <botan/build.h>
-#include <string>
-
-namespace Botan {
-
-/**
-* This class represents the Library Initialization/Shutdown Object. It
-* has to exceed the lifetime of any Botan object used in an application.
-*/
-class BOTAN_DLL LibraryInitializer
- {
- public:
- LibraryInitializer();
- ~LibraryInitializer();
- private:
- bool m_owned;
- };
-
-}
-
-#endif