// 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 {

enum Method {
  Get, Post, Put
};

  }
}

#endif // WT_HTTP_METHOD_H_
