![]() |
Subversion
|
#include <cstdint>#include <functional>#include "svnxx/detail/future.hpp"#include "svnxx/client/context.hpp"#include "svnxx/depth.hpp"#include "svnxx/revision.hpp"Go to the source code of this file.
Data Structures | |
| struct | apache::subversion::svnxx::client::status_notification |
Typedefs | |
| using | apache::subversion::svnxx::client::status_callback = std::function< void(const char *path, const status_notification &st)> |
Enumerations | |
| enum | apache::subversion::svnxx::client::status_flags : std::uint_least32_t { empty = 0U, get_all = 1U << 0, check_out_of_date = 1U << 1, check_working_copy = 1U << 2, no_ignore = 1U << 3, ignore_externals = 1U << 4, depth_as_sticky = 1U << 5 } |
| Flags that modify the behaviour of the status operation. More... | |
Functions | |
| status_flags | apache::subversion::svnxx::client::operator & (status_flags a, status_flags b) |
Bitwise conjunction operator for status_flags. | |
| status_flags | apache::subversion::svnxx::client::operator| (status_flags a, status_flags b) |
Bitwise disjunction operator for status_flags. | |
| revision::number | apache::subversion::svnxx::client::status (context &ctx, const char *path, const revision &rev, depth depth, status_flags flags, status_callback callback) |
| Perform a status operation on path. More... | |
| svnxx::detail::future< revision::number > | apache::subversion::svnxx::client::async::status (std::launch policy, context &ctx, const char *path, const revision &rev, depth depth_, status_flags flags, status_callback callback) |
| Perform an asynchronous status operation on path. More... | |
| svnxx::detail::future< revision::number > | apache::subversion::svnxx::client::async::status (context &ctx, const char *path, const revision &rev, depth depth_, status_flags flags, status_callback callback) |
| This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. More... | |
| using apache::subversion::svnxx::client::status_callback = typedef std::function<void(const char* path, const status_notification& st)> |
Definition at line 51 of file status.hpp.
|
strong |
Flags that modify the behaviour of the status operation.
Definition at line 57 of file status.hpp.
1.8.13