Moved all header files to 'vmime/' directory.

This commit is contained in:
Vincent Richard 2004-12-26 20:23:29 +00:00
parent f5f15e5076
commit 4ce991d3b1
209 changed files with 696 additions and 682 deletions

View File

@ -4,7 +4,11 @@ VERSION 0.6.1-cvs
2004-12-26 Vincent Richard <vincent@vincent-richard.net> 2004-12-26 Vincent Richard <vincent@vincent-richard.net>
* Removed relative paths from #include's. * Removed relative paths from #include's and moved all header files
to 'vmime/' directory.
* Renamed main VMime include from 'vmime' to 'vmime.hpp'. So, in your
program, you have to #include <vmime/vmime.hpp>.
* Added support for 'pkg-config'. * Added support for 'pkg-config'.

View File

@ -86,7 +86,7 @@ libvmime_sources = [
'typeAdapter.cpp', 'typeAdapter.hpp', 'typeAdapter.cpp', 'typeAdapter.hpp',
'types.hpp', 'types.hpp',
'word.cpp', 'word.hpp', 'word.cpp', 'word.hpp',
'vmime', 'vmime.hpp',
'utility/file.hpp', 'utility/file.hpp',
'utility/md5.cpp', 'utility/md5.hpp', 'utility/md5.cpp', 'utility/md5.hpp',
'utility/path.cpp', 'utility/path.hpp', 'utility/path.cpp', 'utility/path.hpp',
@ -249,15 +249,25 @@ libvmimetest_sources = [
libvmime_dist_files = libvmime_sources + libvmime_messaging_sources libvmime_dist_files = libvmime_sources + libvmime_messaging_sources
for i in range(len(libvmime_dist_files)): for i in range(len(libvmime_dist_files)):
libvmime_dist_files[i] = 'src/' + libvmime_dist_files[i] f = libvmime_dist_files[i]
if f[-4:] == '.hpp':
libvmime_dist_files[i] = 'vmime/' + f
else:
libvmime_dist_files[i] = 'src/' + f
for p in libvmime_messaging_proto_sources: for p in libvmime_messaging_proto_sources:
for f in p[1]: for f in p[1]:
libvmime_dist_files.append('src/' + f) if f[-4:] == '.hpp':
libvmime_dist_files.append('vmime/' + f)
else:
libvmime_dist_files.append('src/' + f)
for p in libvmime_platforms_sources: for p in libvmime_platforms_sources:
for f in libvmime_platforms_sources[p]: for f in libvmime_platforms_sources[p]:
libvmime_dist_files.append('src/' + f) if f[-4:] == '.hpp':
libvmime_dist_files.append('vmime/' + f)
else:
libvmime_dist_files.append('src/' + f)
libvmime_dist_files = libvmime_dist_files + libvmime_extra + libvmime_examples_sources libvmime_dist_files = libvmime_dist_files + libvmime_extra + libvmime_examples_sources
@ -426,7 +436,7 @@ env = Environment(options = opts)
env.Append(ENV = os.environ) env.Append(ENV = os.environ)
env.Append(ENV = {'PATH' : os.environ['PATH']}) env.Append(ENV = {'PATH' : os.environ['PATH']})
env.Append(CPPPATH = [ '.', 'src' ]) env.Append(CPPPATH = [ '.' ])
env.Append(CPPDEFINES = { '_REENTRANT' : 1 }) env.Append(CPPDEFINES = { '_REENTRANT' : 1 })
@ -518,7 +528,7 @@ if env['with_messaging'] == 'yes':
# Generate config.hpp # # Generate config.hpp #
######################### #########################
config_hpp = open('src/config.hpp', 'w') config_hpp = open('vmime/config.hpp', 'w')
config_hpp.write(""" config_hpp.write("""
// //
@ -663,11 +673,11 @@ for file in libvmime_full_sources:
if slash != -1: if slash != -1:
dir = file[0:slash] + '/' dir = file[0:slash] + '/'
if file[-4:] == '.cpp': if file[-4:] == '.hpp':
libvmime_sources_CPP.append(buildDirectory + file)
else:
libvmime_sources_HPP.append(buildDirectory + file) libvmime_sources_HPP.append(buildDirectory + file)
libvmime_install_includes.append([dir, buildDirectory + file]) libvmime_install_includes.append([dir, 'vmime/' + file])
else:
libvmime_sources_CPP.append(buildDirectory + file)
# HACK: SCons does not allow '.' in target name, so we have to # HACK: SCons does not allow '.' in target name, so we have to
# detect the suffix for library name and add it ourself # detect the suffix for library name and add it ourself
@ -704,7 +714,7 @@ for platform in libvmime_platforms_sources:
dir = file[0:slash] + '/' dir = file[0:slash] + '/'
if file[-4:] == '.hpp': if file[-4:] == '.hpp':
libvmime_install_includes.append([dir, buildDirectory + file]) libvmime_install_includes.append([dir, 'vmime/' + file])
# Platform libraries # Platform libraries
platformLibraries = [ ] platformLibraries = [ ]
@ -769,7 +779,7 @@ for i in range(len(libvmime_install_includes)):
env.Install(includeDir + '/' + libvmime_install_includes[i][0], libvmime_install_includes[i][1]) env.Install(includeDir + '/' + libvmime_install_includes[i][0], libvmime_install_includes[i][1])
# Configuration header file # Configuration header file
env.Install(includeDir, 'src/config.hpp') env.Install(includeDir, 'vmime/config.hpp')
# Pkg-config support # Pkg-config support
vmime_pc = open(versionedPackageName + ".pc", 'w') vmime_pc = open(versionedPackageName + ".pc", 'w')

View File

@ -29,8 +29,8 @@
#include <iostream> #include <iostream>
#include "../src/vmime" #include "vmime/vmime.hpp"
#include "../src/platforms/posix/handler.hpp" #include "vmime/platforms/posix/handler.hpp"
int main() int main()

View File

@ -29,8 +29,8 @@
#include <iostream> #include <iostream>
#include "../src/vmime" #include "vmime/vmime.hpp"
#include "../src/platforms/posix/handler.hpp" #include "vmime/platforms/posix/handler.hpp"
int main() int main()

View File

@ -29,8 +29,8 @@
#include <iostream> #include <iostream>
#include "../src/vmime" #include "vmime/vmime.hpp"
#include "../src/platforms/posix/handler.hpp" #include "vmime/platforms/posix/handler.hpp"
int main() int main()

View File

@ -28,8 +28,8 @@
#include <iostream> #include <iostream>
#include "../src/vmime" #include "vmime/vmime.hpp"
#include "../src/platforms/posix/handler.hpp" #include "vmime/platforms/posix/handler.hpp"
int main() int main()

View File

@ -29,8 +29,8 @@
#include <iostream> #include <iostream>
#include "../src/vmime" #include "vmime/vmime.hpp"
#include "../src/platforms/posix/handler.hpp" #include "vmime/platforms/posix/handler.hpp"
int main() int main()

View File

@ -19,8 +19,8 @@
#include <iostream> #include <iostream>
#include "../src/vmime" #include "vmime/vmime.hpp"
#include "../src/platforms/posix/handler.hpp" #include "vmime/platforms/posix/handler.hpp"
// //

View File

@ -17,12 +17,12 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "address.hpp" #include "vmime/address.hpp"
#include "mailbox.hpp" #include "vmime/mailbox.hpp"
#include "mailboxGroup.hpp" #include "vmime/mailboxGroup.hpp"
#include "parserHelpers.hpp" #include "vmime/parserHelpers.hpp"
namespace vmime namespace vmime

View File

@ -17,10 +17,10 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "addressList.hpp" #include "vmime/addressList.hpp"
#include "parserHelpers.hpp" #include "vmime/parserHelpers.hpp"
#include "exception.hpp" #include "vmime/exception.hpp"
#include "mailboxList.hpp" #include "vmime/mailboxList.hpp"
namespace vmime namespace vmime

View File

@ -17,30 +17,30 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "config.hpp" #include "vmime/config.hpp"
#include "charset.hpp" #include "vmime/charset.hpp"
#include "base.hpp" #include "vmime/base.hpp"
#include "encoder.hpp" #include "vmime/encoder.hpp"
#include "encoderB64.hpp" #include "vmime/encoderB64.hpp"
#include "encoderQP.hpp" #include "vmime/encoderQP.hpp"
#include "text.hpp" #include "vmime/text.hpp"
#include "parserHelpers.hpp" #include "vmime/parserHelpers.hpp"
#include "utility/stringUtils.hpp" #include "vmime/utility/stringUtils.hpp"
// For initializing // For initializing
#include "encoderFactory.hpp" #include "vmime/encoderFactory.hpp"
#include "headerFieldFactory.hpp" #include "vmime/headerFieldFactory.hpp"
#include "parameterFactory.hpp" #include "vmime/parameterFactory.hpp"
#include "textPartFactory.hpp" #include "vmime/textPartFactory.hpp"
#include "options.hpp" #include "vmime/options.hpp"
#if VMIME_HAVE_MESSAGING_FEATURES #if VMIME_HAVE_MESSAGING_FEATURES
#include "messaging/serviceFactory.hpp" #include "vmime/messaging/serviceFactory.hpp"
#endif #endif

View File

@ -17,16 +17,16 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "bodyPart.hpp" #include "vmime/bodyPart.hpp"
#include "body.hpp" #include "vmime/body.hpp"
#include "options.hpp" #include "vmime/options.hpp"
#include "contentTypeField.hpp" #include "vmime/contentTypeField.hpp"
#include "utility/random.hpp" #include "vmime/utility/random.hpp"
#include "parserHelpers.hpp" #include "vmime/parserHelpers.hpp"
namespace vmime namespace vmime

View File

@ -17,7 +17,7 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "bodyPart.hpp" #include "vmime/bodyPart.hpp"
namespace vmime namespace vmime

View File

@ -17,11 +17,11 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "charset.hpp" #include "vmime/charset.hpp"
#include "exception.hpp" #include "vmime/exception.hpp"
#include "platformDependant.hpp" #include "vmime/platformDependant.hpp"
#include "utility/stringUtils.hpp" #include "vmime/utility/stringUtils.hpp"
extern "C" extern "C"

View File

@ -17,8 +17,8 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "component.hpp" #include "vmime/component.hpp"
#include "base.hpp" #include "vmime/base.hpp"
#include <sstream> #include <sstream>

View File

@ -17,7 +17,7 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "constants.hpp" #include "vmime/constants.hpp"
namespace vmime namespace vmime

View File

@ -17,8 +17,8 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "contentDisposition.hpp" #include "vmime/contentDisposition.hpp"
#include "utility/stringUtils.hpp" #include "vmime/utility/stringUtils.hpp"
namespace vmime namespace vmime

View File

@ -17,10 +17,10 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "contentDispositionField.hpp" #include "vmime/contentDispositionField.hpp"
#include "exception.hpp" #include "vmime/exception.hpp"
#include "standardParams.hpp" #include "vmime/standardParams.hpp"
namespace vmime namespace vmime

View File

@ -17,7 +17,7 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "contentHandler.hpp" #include "vmime/contentHandler.hpp"
namespace vmime namespace vmime

View File

@ -17,10 +17,10 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "contentTypeField.hpp" #include "vmime/contentTypeField.hpp"
#include "exception.hpp" #include "vmime/exception.hpp"
#include "standardParams.hpp" #include "vmime/standardParams.hpp"
namespace vmime namespace vmime

View File

@ -19,9 +19,9 @@
#include <iomanip> #include <iomanip>
#include "dateTime.hpp" #include "vmime/dateTime.hpp"
#include "platformDependant.hpp" #include "vmime/platformDependant.hpp"
#include "parserHelpers.hpp" #include "vmime/parserHelpers.hpp"
namespace vmime namespace vmime

View File

@ -17,8 +17,8 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "defaultAttachment.hpp" #include "vmime/defaultAttachment.hpp"
#include "encoding.hpp" #include "vmime/encoding.hpp"
namespace vmime namespace vmime

View File

@ -17,8 +17,8 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "encoder.hpp" #include "vmime/encoder.hpp"
#include "exception.hpp" #include "vmime/exception.hpp"
namespace vmime namespace vmime

View File

@ -17,7 +17,7 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "encoder7bit.hpp" #include "vmime/encoder7bit.hpp"
namespace vmime namespace vmime

View File

@ -17,7 +17,7 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "encoder8bit.hpp" #include "vmime/encoder8bit.hpp"
namespace vmime namespace vmime

View File

@ -17,8 +17,8 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "encoderB64.hpp" #include "vmime/encoderB64.hpp"
#include "parserHelpers.hpp" #include "vmime/parserHelpers.hpp"
namespace vmime namespace vmime

View File

@ -17,7 +17,7 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "encoderBinary.hpp" #include "vmime/encoderBinary.hpp"
namespace vmime namespace vmime

View File

@ -17,7 +17,7 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "encoderDefault.hpp" #include "vmime/encoderDefault.hpp"
namespace vmime namespace vmime

View File

@ -17,15 +17,15 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "encoderFactory.hpp" #include "vmime/encoderFactory.hpp"
#include "exception.hpp" #include "vmime/exception.hpp"
#include "encoderB64.hpp" #include "vmime/encoderB64.hpp"
#include "encoderQP.hpp" #include "vmime/encoderQP.hpp"
#include "encoderUUE.hpp" #include "vmime/encoderUUE.hpp"
#include "encoderBinary.hpp" #include "vmime/encoderBinary.hpp"
#include "encoder7bit.hpp" #include "vmime/encoder7bit.hpp"
#include "encoder8bit.hpp" #include "vmime/encoder8bit.hpp"
namespace vmime namespace vmime

View File

@ -17,8 +17,8 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "encoderQP.hpp" #include "vmime/encoderQP.hpp"
#include "parserHelpers.hpp" #include "vmime/parserHelpers.hpp"
namespace vmime namespace vmime

View File

@ -17,8 +17,8 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "encoderUUE.hpp" #include "vmime/encoderUUE.hpp"
#include "parserHelpers.hpp" #include "vmime/parserHelpers.hpp"
namespace vmime namespace vmime

View File

@ -17,9 +17,9 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "encoding.hpp" #include "vmime/encoding.hpp"
#include "encoderFactory.hpp" #include "vmime/encoderFactory.hpp"
#include "contentHandler.hpp" #include "vmime/contentHandler.hpp"
#include <algorithm> #include <algorithm>

View File

@ -17,7 +17,7 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "exception.hpp" #include "vmime/exception.hpp"
namespace vmime { namespace vmime {

View File

@ -20,8 +20,8 @@
#include <fstream> #include <fstream>
#include <sstream> #include <sstream>
#include "fileAttachment.hpp" #include "vmime/fileAttachment.hpp"
#include "exception.hpp" #include "vmime/exception.hpp"
namespace vmime namespace vmime

View File

@ -17,8 +17,8 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "header.hpp" #include "vmime/header.hpp"
#include "parserHelpers.hpp" #include "vmime/parserHelpers.hpp"
namespace vmime namespace vmime

View File

@ -17,8 +17,8 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "headerField.hpp" #include "vmime/headerField.hpp"
#include "headerFieldFactory.hpp" #include "vmime/headerFieldFactory.hpp"
namespace vmime namespace vmime

View File

@ -17,14 +17,14 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "headerFieldFactory.hpp" #include "vmime/headerFieldFactory.hpp"
#include "exception.hpp" #include "vmime/exception.hpp"
#include "standardFields.hpp" #include "vmime/standardFields.hpp"
#include "mailboxField.hpp" #include "vmime/mailboxField.hpp"
#include "contentTypeField.hpp" #include "vmime/contentTypeField.hpp"
#include "contentDispositionField.hpp" #include "vmime/contentDispositionField.hpp"
namespace vmime namespace vmime

View File

@ -17,8 +17,8 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "htmlTextPart.hpp" #include "vmime/htmlTextPart.hpp"
#include "exception.hpp" #include "vmime/exception.hpp"
namespace vmime namespace vmime

View File

@ -17,8 +17,8 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "mailbox.hpp" #include "vmime/mailbox.hpp"
#include "parserHelpers.hpp" #include "vmime/parserHelpers.hpp"
namespace vmime namespace vmime

View File

@ -17,8 +17,8 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "mailboxField.hpp" #include "vmime/mailboxField.hpp"
#include "mailboxGroup.hpp" #include "vmime/mailboxGroup.hpp"
namespace vmime namespace vmime

View File

@ -17,9 +17,9 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "mailboxGroup.hpp" #include "vmime/mailboxGroup.hpp"
#include "parserHelpers.hpp" #include "vmime/parserHelpers.hpp"
#include "exception.hpp" #include "vmime/exception.hpp"
namespace vmime namespace vmime

View File

@ -17,8 +17,8 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "mailboxList.hpp" #include "vmime/mailboxList.hpp"
#include "exception.hpp" #include "vmime/exception.hpp"
namespace vmime namespace vmime

View File

@ -17,8 +17,8 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "mediaType.hpp" #include "vmime/mediaType.hpp"
#include "parserHelpers.hpp" #include "vmime/parserHelpers.hpp"
namespace vmime namespace vmime

View File

@ -17,8 +17,8 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "message.hpp" #include "vmime/message.hpp"
#include "options.hpp" #include "vmime/options.hpp"
#include <sstream> #include <sstream>

View File

@ -17,9 +17,9 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "messageBuilder.hpp" #include "vmime/messageBuilder.hpp"
#include "textPartFactory.hpp" #include "vmime/textPartFactory.hpp"
namespace vmime namespace vmime

View File

@ -17,10 +17,10 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "messageId.hpp" #include "vmime/messageId.hpp"
#include "utility/random.hpp" #include "vmime/utility/random.hpp"
#include "platformDependant.hpp" #include "vmime/platformDependant.hpp"
#include "parserHelpers.hpp" #include "vmime/parserHelpers.hpp"
namespace vmime namespace vmime

View File

@ -17,10 +17,10 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "messageParser.hpp" #include "vmime/messageParser.hpp"
#include "defaultAttachment.hpp" #include "vmime/defaultAttachment.hpp"
#include "textPartFactory.hpp" #include "vmime/textPartFactory.hpp"
namespace vmime namespace vmime

View File

@ -17,13 +17,13 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "messaging/IMAPTag.hpp" #include "vmime/messaging/IMAPTag.hpp"
#include "messaging/IMAPConnection.hpp" #include "vmime/messaging/IMAPConnection.hpp"
#include "messaging/IMAPUtils.hpp" #include "vmime/messaging/IMAPUtils.hpp"
#include "messaging/IMAPStore.hpp" #include "vmime/messaging/IMAPStore.hpp"
#include "exception.hpp" #include "vmime/exception.hpp"
#include "platformDependant.hpp" #include "vmime/platformDependant.hpp"
#include <sstream> #include <sstream>

View File

@ -17,18 +17,18 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "messaging/IMAPFolder.hpp" #include "vmime/messaging/IMAPFolder.hpp"
#include "messaging/IMAPStore.hpp" #include "vmime/messaging/IMAPStore.hpp"
#include "messaging/IMAPParser.hpp" #include "vmime/messaging/IMAPParser.hpp"
#include "messaging/IMAPMessage.hpp" #include "vmime/messaging/IMAPMessage.hpp"
#include "messaging/IMAPUtils.hpp" #include "vmime/messaging/IMAPUtils.hpp"
#include "messaging/IMAPConnection.hpp" #include "vmime/messaging/IMAPConnection.hpp"
#include "messageParser.hpp" // to include "message.hpp" in root directory #include "vmime/message.hpp"
#include "exception.hpp" #include "vmime/exception.hpp"
#include "utility/smartPtr.hpp" #include "vmime/utility/smartPtr.hpp"
#include <algorithm> #include <algorithm>
#include <sstream> #include <sstream>

View File

@ -17,12 +17,12 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "messaging/IMAPParser.hpp" #include "vmime/messaging/IMAPParser.hpp"
#include "messaging/IMAPMessage.hpp" #include "vmime/messaging/IMAPMessage.hpp"
#include "messaging/IMAPFolder.hpp" #include "vmime/messaging/IMAPFolder.hpp"
#include "messaging/IMAPStore.hpp" #include "vmime/messaging/IMAPStore.hpp"
#include "messaging/IMAPConnection.hpp" #include "vmime/messaging/IMAPConnection.hpp"
#include "messaging/IMAPUtils.hpp" #include "vmime/messaging/IMAPUtils.hpp"
#include <sstream> #include <sstream>
#include <iterator> #include <iterator>

View File

@ -17,12 +17,12 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "messaging/IMAPStore.hpp" #include "vmime/messaging/IMAPStore.hpp"
#include "messaging/IMAPFolder.hpp" #include "vmime/messaging/IMAPFolder.hpp"
#include "messaging/IMAPConnection.hpp" #include "vmime/messaging/IMAPConnection.hpp"
#include "exception.hpp" #include "vmime/exception.hpp"
#include "platformDependant.hpp" #include "vmime/platformDependant.hpp"
#include <map> #include <map>

View File

@ -17,7 +17,7 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "messaging/IMAPTag.hpp" #include "vmime/messaging/IMAPTag.hpp"
namespace vmime { namespace vmime {

View File

@ -17,8 +17,8 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "messaging/IMAPUtils.hpp" #include "vmime/messaging/IMAPUtils.hpp"
#include "messaging/message.hpp" #include "vmime/messaging/message.hpp"
#include <sstream> #include <sstream>
#include <iterator> #include <iterator>

View File

@ -17,12 +17,12 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "messaging/POP3Folder.hpp" #include "vmime/messaging/POP3Folder.hpp"
#include "messaging/POP3Store.hpp" #include "vmime/messaging/POP3Store.hpp"
#include "messaging/POP3Message.hpp" #include "vmime/messaging/POP3Message.hpp"
#include "exception.hpp" #include "vmime/exception.hpp"
namespace vmime { namespace vmime {

View File

@ -17,9 +17,9 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "messaging/POP3Message.hpp" #include "vmime/messaging/POP3Message.hpp"
#include "messaging/POP3Folder.hpp" #include "vmime/messaging/POP3Folder.hpp"
#include "messaging/POP3Store.hpp" #include "vmime/messaging/POP3Store.hpp"
#include <sstream> #include <sstream>

View File

@ -17,13 +17,13 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "messaging/POP3Store.hpp" #include "vmime/messaging/POP3Store.hpp"
#include "messaging/POP3Folder.hpp" #include "vmime/messaging/POP3Folder.hpp"
#include "exception.hpp" #include "vmime/exception.hpp"
#include "platformDependant.hpp" #include "vmime/platformDependant.hpp"
#include "messageId.hpp" #include "vmime/messageId.hpp"
#include "utility/md5.hpp" #include "vmime/utility/md5.hpp"
#include <algorithm> #include <algorithm>

View File

@ -17,15 +17,15 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "messaging/SMTPTransport.hpp" #include "vmime/messaging/SMTPTransport.hpp"
#include "exception.hpp" #include "vmime/exception.hpp"
#include "platformDependant.hpp" #include "vmime/platformDependant.hpp"
#include "encoderB64.hpp" #include "vmime/encoderB64.hpp"
#include "messageParser.hpp" // to include "message.hpp" in root directory #include "vmime/message.hpp"
#include "mailboxList.hpp" #include "vmime/mailboxList.hpp"
#include "messaging/authHelper.hpp" #include "vmime/messaging/authHelper.hpp"
namespace vmime { namespace vmime {

View File

@ -17,10 +17,10 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "messaging/authHelper.hpp" #include "vmime/messaging/authHelper.hpp"
#include "config.hpp" #include "vmime/config.hpp"
#include "utility/md5.hpp" #include "vmime/utility/md5.hpp"
namespace vmime { namespace vmime {

View File

@ -17,7 +17,7 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "messaging/authenticationInfos.hpp" #include "vmime/messaging/authenticationInfos.hpp"
namespace vmime { namespace vmime {

View File

@ -17,7 +17,7 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "messaging/authenticator.hpp" #include "vmime/messaging/authenticator.hpp"
namespace vmime { namespace vmime {

View File

@ -25,25 +25,25 @@
#if VMIME_BUILTIN_MESSAGING_PROTO_POP3 #if VMIME_BUILTIN_MESSAGING_PROTO_POP3
#include "POP3Store.hpp" #include "vmime/messaging/POP3Store.hpp"
REGISTER_SERVICE(POP3Store, pop3); REGISTER_SERVICE(POP3Store, pop3);
#endif #endif
#if VMIME_BUILTIN_MESSAGING_PROTO_SMTP #if VMIME_BUILTIN_MESSAGING_PROTO_SMTP
#include "SMTPTransport.hpp" #include "vmime/messaging/SMTPTransport.hpp"
REGISTER_SERVICE(SMTPTransport, smtp); REGISTER_SERVICE(SMTPTransport, smtp);
#endif #endif
#if VMIME_BUILTIN_MESSAGING_PROTO_IMAP #if VMIME_BUILTIN_MESSAGING_PROTO_IMAP
#include "IMAPStore.hpp" #include "vmime/messaging/IMAPStore.hpp"
REGISTER_SERVICE(IMAPStore, imap); REGISTER_SERVICE(IMAPStore, imap);
#endif #endif
#if VMIME_BUILTIN_MESSAGING_PROTO_MAILDIR #if VMIME_BUILTIN_MESSAGING_PROTO_MAILDIR
#include "maildirStore.hpp" #include "vmime/messaging/maildirStore.hpp"
REGISTER_SERVICE(maildirStore, maildir); REGISTER_SERVICE(maildirStore, maildir);
#endif #endif

View File

@ -17,7 +17,7 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "messaging/defaultAuthenticator.hpp" #include "vmime/messaging/defaultAuthenticator.hpp"
namespace vmime { namespace vmime {

View File

@ -17,7 +17,7 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "messaging/events.hpp" #include "vmime/messaging/events.hpp"
#include <algorithm> #include <algorithm>

View File

@ -17,7 +17,7 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "messaging/folder.hpp" #include "vmime/messaging/folder.hpp"
#include <algorithm> #include <algorithm>

View File

@ -17,18 +17,18 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "messaging/maildirFolder.hpp" #include "vmime/messaging/maildirFolder.hpp"
#include "messaging/maildirStore.hpp" #include "vmime/messaging/maildirStore.hpp"
#include "messaging/maildirMessage.hpp" #include "vmime/messaging/maildirMessage.hpp"
#include "messaging/maildirUtils.hpp" #include "vmime/messaging/maildirUtils.hpp"
#include "utility/smartPtr.hpp" #include "vmime/utility/smartPtr.hpp"
#include "messageParser.hpp" // to include "message.hpp" in root directory #include "vmime/message.hpp"
#include "exception.hpp" #include "vmime/exception.hpp"
#include "platformDependant.hpp" #include "vmime/platformDependant.hpp"
namespace vmime { namespace vmime {

View File

@ -17,14 +17,14 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "messaging/maildirMessage.hpp" #include "vmime/messaging/maildirMessage.hpp"
#include "messaging/maildirFolder.hpp" #include "vmime/messaging/maildirFolder.hpp"
#include "messaging/maildirUtils.hpp" #include "vmime/messaging/maildirUtils.hpp"
#include "messageParser.hpp" // to include "message.hpp" in root directory #include "vmime/messageParser.hpp" // to include "message.hpp" in root directory
#include "exception.hpp" #include "vmime/exception.hpp"
#include "platformDependant.hpp" #include "vmime/platformDependant.hpp"
namespace vmime { namespace vmime {

View File

@ -17,14 +17,14 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "messaging/maildirStore.hpp" #include "vmime/messaging/maildirStore.hpp"
#include "messaging/maildirFolder.hpp" #include "vmime/messaging/maildirFolder.hpp"
#include "utility/smartPtr.hpp" #include "vmime/utility/smartPtr.hpp"
#include "exception.hpp" #include "vmime/exception.hpp"
#include "platformDependant.hpp" #include "vmime/platformDependant.hpp"
namespace vmime { namespace vmime {

View File

@ -17,10 +17,10 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "messaging/maildirUtils.hpp" #include "vmime/messaging/maildirUtils.hpp"
#include "messaging/maildirStore.hpp" #include "vmime/messaging/maildirStore.hpp"
#include "utility/random.hpp" #include "vmime/utility/random.hpp"
namespace vmime { namespace vmime {

View File

@ -17,7 +17,7 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "messaging/message.hpp" #include "vmime/messaging/message.hpp"
namespace vmime { namespace vmime {

View File

@ -17,9 +17,9 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "messaging/service.hpp" #include "vmime/messaging/service.hpp"
#include "messaging/defaultAuthenticator.hpp" #include "vmime/messaging/defaultAuthenticator.hpp"
namespace vmime { namespace vmime {

View File

@ -17,13 +17,13 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "messaging/serviceFactory.hpp" #include "vmime/messaging/serviceFactory.hpp"
#include "messaging/service.hpp" #include "vmime/messaging/service.hpp"
#include "exception.hpp" #include "vmime/exception.hpp"
#include "config.hpp" #include "vmime/config.hpp"
#include "messaging/builtinServices.inl" #include "builtinServices.inl"
namespace vmime { namespace vmime {

View File

@ -17,11 +17,11 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "messaging/session.hpp" #include "vmime/messaging/session.hpp"
#include "messaging/serviceFactory.hpp" #include "vmime/messaging/serviceFactory.hpp"
#include "messaging/store.hpp" #include "vmime/messaging/store.hpp"
#include "messaging/transport.hpp" #include "vmime/messaging/transport.hpp"
namespace vmime { namespace vmime {

View File

@ -17,7 +17,7 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "messaging/simpleAuthenticator.hpp" #include "vmime/messaging/simpleAuthenticator.hpp"
namespace vmime { namespace vmime {

View File

@ -17,11 +17,11 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "url.hpp" #include "vmime/messaging/url.hpp"
#include "parserHelpers.hpp" #include "vmime/parserHelpers.hpp"
#include "messaging/urlUtils.hpp" #include "vmime/messaging/urlUtils.hpp"
#include "exception.hpp" #include "vmime/exception.hpp"
#include <sstream> #include <sstream>

View File

@ -17,7 +17,7 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "messaging/urlUtils.hpp" #include "vmime/messaging/urlUtils.hpp"
namespace vmime { namespace vmime {

View File

@ -17,7 +17,7 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "options.hpp" #include "vmime/options.hpp"
namespace vmime namespace vmime

View File

@ -17,8 +17,8 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "parameter.hpp" #include "vmime/parameter.hpp"
#include "parameterFactory.hpp" #include "vmime/parameterFactory.hpp"
namespace vmime namespace vmime

View File

@ -17,10 +17,10 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "parameterFactory.hpp" #include "vmime/parameterFactory.hpp"
#include "exception.hpp" #include "vmime/exception.hpp"
#include "standardParams.hpp" #include "vmime/standardParams.hpp"
namespace vmime namespace vmime

View File

@ -17,10 +17,10 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "parameterizedHeaderField.hpp" #include "vmime/parameterizedHeaderField.hpp"
#include "parameterFactory.hpp" #include "vmime/parameterFactory.hpp"
#include "text.hpp" #include "vmime/text.hpp"
#include "parserHelpers.hpp" #include "vmime/parserHelpers.hpp"
namespace vmime namespace vmime

View File

@ -17,9 +17,9 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "plainTextPart.hpp" #include "vmime/plainTextPart.hpp"
#include "header.hpp" #include "vmime/header.hpp"
#include "exception.hpp" #include "vmime/exception.hpp"
namespace vmime namespace vmime

View File

@ -17,7 +17,7 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "platformDependant.hpp" #include "vmime/platformDependant.hpp"
namespace vmime namespace vmime

View File

@ -17,7 +17,7 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "platforms/posix/file.hpp" #include "vmime/platforms/posix/file.hpp"
#include <unistd.h> #include <unistd.h>
#include <fcntl.h> #include <fcntl.h>
@ -30,7 +30,7 @@
#include <string.h> #include <string.h>
#include "exception.hpp" #include "vmime/exception.hpp"
#if VMIME_HAVE_FILESYSTEM_FEATURES #if VMIME_HAVE_FILESYSTEM_FEATURES

View File

@ -17,7 +17,7 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "platforms/posix/handler.hpp" #include "vmime/platforms/posix/handler.hpp"
#include <time.h> #include <time.h>

View File

@ -17,7 +17,7 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "platforms/posix/socket.hpp" #include "vmime/platforms/posix/socket.hpp"
#include <unistd.h> #include <unistd.h>
#include <sys/socket.h> #include <sys/socket.h>
@ -27,7 +27,7 @@
#include <netdb.h> #include <netdb.h>
#include <fcntl.h> #include <fcntl.h>
#include "exception.hpp" #include "vmime/exception.hpp"
#if VMIME_HAVE_MESSAGING_FEATURES #if VMIME_HAVE_MESSAGING_FEATURES

View File

@ -17,7 +17,7 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "propertySet.hpp" #include "vmime/propertySet.hpp"
namespace vmime namespace vmime

View File

@ -17,9 +17,9 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "relay.hpp" #include "vmime/relay.hpp"
#include "text.hpp" #include "vmime/text.hpp"
#include "parserHelpers.hpp" #include "vmime/parserHelpers.hpp"
#include <sstream> #include <sstream>

View File

@ -17,13 +17,13 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "text.hpp" #include "vmime/text.hpp"
#include "utility/stringUtils.hpp" #include "vmime/utility/stringUtils.hpp"
#include "encoder.hpp" #include "vmime/encoder.hpp"
#include "encoderB64.hpp" #include "vmime/encoderB64.hpp"
#include "encoderQP.hpp" #include "vmime/encoderQP.hpp"
namespace vmime namespace vmime

View File

@ -17,12 +17,12 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "textPartFactory.hpp" #include "vmime/textPartFactory.hpp"
#include "exception.hpp" #include "vmime/exception.hpp"
#include "plainTextPart.hpp" #include "vmime/plainTextPart.hpp"
#include "htmlTextPart.hpp" #include "vmime/htmlTextPart.hpp"
namespace vmime namespace vmime

View File

@ -18,7 +18,7 @@
// //
#include "typeAdapter.hpp" #include "vmime/typeAdapter.hpp"
namespace vmime namespace vmime

View File

@ -44,7 +44,7 @@
// These notices must be retained in any copies of any part of this // These notices must be retained in any copies of any part of this
// documentation and/or software. // documentation and/or software.
#include "utility/md5.hpp" #include "vmime/utility/md5.hpp"
namespace vmime { namespace vmime {

View File

@ -17,7 +17,7 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "utility/path.hpp" #include "vmime/utility/path.hpp"
#include <algorithm> #include <algorithm>

View File

@ -17,8 +17,8 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "utility/random.hpp" #include "vmime/utility/random.hpp"
#include "platformDependant.hpp" #include "vmime/platformDependant.hpp"
#include <ctime> #include <ctime>

View File

@ -17,7 +17,7 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "singleton.hpp" #include "vmime/utility/singleton.hpp"
namespace vmime { namespace vmime {

View File

@ -17,8 +17,8 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "utility/stream.hpp" #include "vmime/utility/stream.hpp"
#include "utility/stringProxy.hpp" #include "vmime/utility/stringProxy.hpp"
#include <algorithm> // for std::copy #include <algorithm> // for std::copy
#include <iterator> // for std::back_inserter #include <iterator> // for std::back_inserter

View File

@ -17,7 +17,7 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "utility/stringProxy.hpp" #include "vmime/utility/stringProxy.hpp"
#include <iterator> #include <iterator>
#include <algorithm> #include <algorithm>

View File

@ -17,7 +17,7 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "utility/stringUtils.hpp" #include "vmime/utility/stringUtils.hpp"
namespace vmime namespace vmime

View File

@ -1,92 +0,0 @@
//
// VMime library (http://vmime.sourceforge.net)
// Copyright (C) 2002-2004 Vincent Richard <vincent@vincent-richard.net>
//
// 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; either version 2 of
// the License, or (at your option) any later version.
//
// 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, write to the Free Software
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
//
#ifndef VMIME_INCLUDED
#define VMIME_INCLUDED
// Configuration
#include "config.hpp"
// Base definitions
#include "base.hpp"
#include "exception.hpp"
#include "options.hpp"
#include "platformDependant.hpp"
// Base components
#include "dateTime.hpp"
#include "message.hpp"
#include "bodyPart.hpp"
#include "charset.hpp"
#include "text.hpp"
#include "encoding.hpp"
#include "contentDisposition.hpp"
#include "mailbox.hpp"
#include "mailboxGroup.hpp"
#include "mailboxList.hpp"
#include "addressList.hpp"
#include "mediaType.hpp"
#include "messageId.hpp"
#include "relay.hpp"
// Message components
#include "message.hpp"
// Header fields
#include "headerFieldFactory.hpp"
#include "mailboxField.hpp"
#include "parameterizedHeaderField.hpp"
#include "standardFields.hpp"
// Encoders
#include "encoderFactory.hpp"
// Message builder/parser
#include "messageBuilder.hpp"
#include "messageParser.hpp"
#include "fileAttachment.hpp"
#include "defaultAttachment.hpp"
#include "plainTextPart.hpp"
#include "htmlTextPart.hpp"
// Property set
#include "propertySet.hpp"
// Messaging features
#if VMIME_HAVE_MESSAGING_FEATURES
#include "messaging/socket.hpp"
#include "messaging/service.hpp"
#include "messaging/store.hpp"
#include "messaging/transport.hpp"
#include "messaging/session.hpp"
#include "messaging/authenticator.hpp"
#include "messaging/defaultAuthenticator.hpp"
#include "messaging/simpleAuthenticator.hpp"
#include "messaging/folder.hpp"
#include "messaging/message.hpp"
#endif // VMIME_HAVE_MESSAGING_FEATURES
#endif // VMIME_INCLUDED

View File

@ -17,7 +17,7 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
// //
#include "word.hpp" #include "vmime/word.hpp"
namespace vmime namespace vmime

View File

@ -22,8 +22,8 @@
#include <iostream> #include <iostream>
#include <ostream> #include <ostream>
#include "../../src/vmime" #include "vmime/vmime.hpp"
#include "../../src/platforms/posix/handler.hpp" #include "vmime/platforms/posix/handler.hpp"
using namespace unitpp; using namespace unitpp;

View File

@ -22,8 +22,8 @@
#include <iostream> #include <iostream>
#include <ostream> #include <ostream>
#include "../../src/vmime" #include "vmime/vmime.hpp"
#include "../../src/platforms/posix/handler.hpp" #include "vmime/platforms/posix/handler.hpp"
using namespace unitpp; using namespace unitpp;

Some files were not shown because too many files have changed in this diff Show More