summaryrefslogtreecommitdiff
path: root/cpp/src/Slice/PHPUtil.h
blob: 03f5d537ae62bc1718b6fb9deaf4f4243bf7813e (plain)
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
29
30
31
32
33
34
35
36
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//

#ifndef SLICE_PHP_UTIL_H
#define SLICE_PHP_UTIL_H

#include <IceUtil/Config.h>
#include <string>

namespace Slice
{
namespace PHP
{

//
// Convert a scoped name into a PHP name.
//
std::string scopedToName(const std::string&, bool);

//
// Check the given identifier against PHP's list of reserved words. If it matches
// a reserved word, then an escaped version is returned with a leading underscore.
//
std::string fixIdent(const std::string&);

//
// Since PHP uses the backslash character as the namespace separator, we have
// to escape backslash characters when they appear in a string literal.
//
std::string escapeName(const std::string&);

}
}

#endif