Subversion
Data Structures | Typedefs | Enumerations | Functions
status.hpp File Reference
#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...
 

Detailed Description

@if copyrights

Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations

under the License.

Definition in file status.hpp.

Typedef Documentation

◆ status_callback

using apache::subversion::svnxx::client::status_callback = typedef std::function<void(const char* path, const status_notification& st)>
Warning
TODO: Work in progress

Definition at line 51 of file status.hpp.

Enumeration Type Documentation

◆ status_flags

enum apache::subversion::svnxx::client::status_flags : std::uint_least32_t
strong

Flags that modify the behaviour of the status operation.

See also
svn_client_status6

Definition at line 57 of file status.hpp.