desktop: show the modem pppd command in the modem script
[barry.git] / src / mimeio.h
blob75167fec8c109ba4b4952e72089a162c968038c4
1 ///
2 /// \file mimeio.h
3 /// Storage, parser, builder classes for MIME objects
4 /// (vcard, vevent, vtodo, vjournal)
5 ///
7 /*
8 Copyright (C) 2010-2012, Net Direct Inc. (http://www.netdirect.ca/)
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
19 See the GNU General Public License in the COPYING file at the
20 root directory of this project for more details.
23 #ifndef __BARRY_MIMEIO_H__
24 #define __BARRY_MIMEIO_H__
26 #include "dll.h"
27 #include "builder.h"
28 #include <string>
29 #include <vector>
30 #include <memory>
31 #include <iosfwd>
33 namespace Barry {
35 class BXEXPORT MimeBuilder : public Barry::Builder
37 std::auto_ptr<std::ifstream> m_ifs;
38 std::istream &m_is;
40 public:
41 explicit MimeBuilder(const std::string &filename);
42 explicit MimeBuilder(std::istream &is);
44 bool BuildRecord(DBData &data, size_t &offset, const IConverter *ic);
45 bool FetchRecord(DBData &data, const IConverter *ic);
46 bool EndOfFile() const;
48 // return false at end of file, true if a record was read
49 static bool ReadMimeRecord(std::istream &is, std::string &vrec,
50 std::vector<std::string> &types);
51 // returns true if item is a member of types, doing a
52 // case-insensitive compare
53 static bool IsMember(const std::string &item,
54 const std::vector<std::string> &types);
59 #endif