diff options
author | Vincent Richard <[email protected]> | 2005-03-14 20:35:25 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2005-03-14 20:35:25 +0000 |
commit | 362fa346f94e2b3a8c0abb7badfbd7a749a9de1c (patch) | |
tree | e7e127f8c8dba44367e4ccdf556791cc547823c1 /src/options.cpp | |
parent | Fixed parameters not showing as child components + fixed parsing bounds in ty... (diff) | |
download | vmime-362fa346f94e2b3a8c0abb7badfbd7a749a9de1c.tar.gz vmime-362fa346f94e2b3a8c0abb7badfbd7a749a9de1c.zip |
Removed 'singleton' and 'singletonManager' classes.
Diffstat (limited to 'src/options.cpp')
-rw-r--r-- | src/options.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/options.cpp b/src/options.cpp index 609dbeb1..d99b248b 100644 --- a/src/options.cpp +++ b/src/options.cpp @@ -24,6 +24,13 @@ namespace vmime { +options* options::getInstance() +{ + static options instance; + return (&instance); +} + + options::multipartOptions::multipartOptions() : m_prologText("This is a multi-part message in MIME format. Your mail reader " \ "does not understand MIME message format."), |