blob: 60c02d17418e00b6c6b48621f777e9ddaa80c627 [file] [log] [blame]
[email protected]43fa5b82012-06-05 04:15:501// Copyright (c) 2012 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef DBUS_STRING_UTIL_H_
6#define DBUS_STRING_UTIL_H_
[email protected]43fa5b82012-06-05 04:15:507
8#include <string>
9
[email protected]e3024462012-11-05 01:56:1410#include "dbus/dbus_export.h"
11
[email protected]43fa5b82012-06-05 04:15:5012namespace dbus {
13
14// Returns true if the specified string is a valid object path.
[email protected]e3024462012-11-05 01:56:1415CHROME_DBUS_EXPORT bool IsValidObjectPath(const std::string& value);
[email protected]43fa5b82012-06-05 04:15:5016
17} // namespace dbus
18
19#endif // DBUS_STRING_UTIL_H_