Commit cadddd49 authored by Paul Asmuth's avatar Paul Asmuth
Browse files

format.{cc,h}

parent ba370c0f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -16,7 +16,7 @@
#include <fnord-base/inspect.h>
#include <fnordmetric/sql/parser/token.h>
#include <fnordmetric/sql/svalue.h>
#include <fnordmetric/util/format.h>
#include <fnordmetric/format.h>

namespace fnordmetric {
namespace query {

src/fnordmetric/util/htmlutil.h

deleted100644 → 0
+0 −29
Original line number Diff line number Diff line
/**
 * This file is part of the "FnordMetric" project
 *   Copyright (c) 2014 Paul Asmuth, Google Inc.
 *
 * FnordMetric is free software: you can redistribute it and/or modify it under
 * the terms of the GNU General Public License v3.0. You should have received a
 * copy of the GNU General Public License along with this program. If not, see
 * <http://www.gnu.org/licenses/>.
 */
#ifndef _FNORDMETRIC_UTIL_STRINGUTIL_H_
#define _FNORDMETRIC_UTIL_STRINGUTIL_H_

#include <stdlib.h>
#include <stdint.h>
#include <string>

namespace fnord {
namespace util {

class HTMLUtil {
public:

  static std::string urlDecode(const std::string& str);

};

}
}
#endif