File: impl.h

package info (click to toggle)
nixnote2 2.0~beta11-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 9,448 kB
  • ctags: 7,058
  • sloc: cpp: 68,338; java: 1,096; sh: 834; makefile: 27
file content (36 lines) | stat: -rw-r--r-- 862 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#ifndef QEVERCLOUD_IMPL_H
#define QEVERCLOUD_IMPL_H

#include "exceptions.h"
#include "globals.h"
#include "http.h"
#include "thrift.h"
#include "Optional.h"


/**

@mainpage About QEverCloud

This library presents complete Evernote SDK for Qt.
All the functionality that is described on <a href="http://dev.evernote.com/doc/">Evernote site</a>
is implemented and ready to use. In particular OAuth autentication is implemented.

Include *QEverCloud.h* or *QEverCloudOAuth.h* to use the library. The latter header is needed if you use OAuth functionality.

<a href="https://github.com/mgsxx/QEverCloud">QEverCloud on GitHub</a>

*/

namespace qevercloud {

/** @cond HIDDEN_SYMBOLS  */

ThriftException readThriftException(ThriftBinaryBufferReader& r);

void throwEDAMSystemException(const EDAMSystemException &e);

/** @endcond */
}

#endif // QEVERCLOUD_IMPL_H