/usr/include/Wt/Http/Method is in libwt-dev 3.3.4+dfsg-6ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
| 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 | // This may look like C code, but it's really -*- C++ -*-
/*
 * Copyright (C) 2009 Emweb bvba, Kessel-Lo, Belgium.
 *
 * See the LICENSE file for terms of use.
 */
#ifndef WT_HTTP_METHOD_H_
#define WT_HTTP_METHOD_H_
namespace Wt {
  namespace Http {
/*! \brief Enumeration for a HTTP method
 *
 * This enumeration is currently limited to only a few of the most
 * used HTTP methods.
 */
enum Method {
  Get,   //!< a HTTP GET
  Post,  //!< a HTTP POST
  Put,   //!< a HTTP PUT
  Delete //!< a HTTP DELETE
};
  }
}
#endif // WT_HTTP_METHOD_H_
 |