blob: 72aeee202e45b1f338dded7c3bdfad8aac9efaf1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef LIBTMDB_OPTIONS_H
#define LIBTMDB_OPTIONS_H
#include <visibility.h>
#include <tmdb-common.h>
namespace Slicer {
DLL_PUBLIC std::string dateToString(const Ice::optional<::TMDb::Date> &);
DLL_PUBLIC IceUtil::Optional<::TMDb::Date> stringToDate(const std::string &);
}
#endif
|