~ubuntu-branches/ubuntu/saucy/filezilla/saucy-proposed

« back to all changes in this revision

Viewing changes to src/include/misc.h

  • Committer: Package Import Robot
  • Author(s): Adrien Cunin
  • Date: 2012-12-07 17:17:17 UTC
  • mfrom: (1.1.31)
  • Revision ID: package-import@ubuntu.com-20121207171717-nt6as62u4pa1uv11
Tags: 3.6.0.2-1ubuntu1
* Merge from Debian experimental. Remaining Ubuntu change:
   - Added debian/patches/11_use-decimal-si-by-default.patch in order to
     comply with UnitsPolicy

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 
19
19
// Under some locales (e.g. Turkish), there is a different
20
20
// relationship between the letters a-z and A-Z.
21
 
// In Turkish for example there are different types of i 
 
21
// In Turkish for example there are different types of i
22
22
// (dotted and dotless), with i lowercase dotted and I
23
23
// uppercase dotless.
24
24
// If needed, use this function to transform the case manually
25
25
// and locale-independently
26
26
void MakeLowerAscii(wxString& str);
27
27
 
28
 
enum _dependency
29
 
{
30
 
        dependency_gnutls
 
28
// Strongly typed enum would be nice, but we need to support older compilers still.
 
29
namespace dependency {
 
30
enum type {
 
31
        wxwidgets,
 
32
        gnutls,
 
33
        sqlite,
 
34
        count
31
35
};
32
 
 
33
 
wxString GetDependencyVersion(enum _dependency dependency);
 
36
}
 
37
 
 
38
wxString GetDependencyName( dependency::type d );
 
39
wxString GetDependencyVersion( dependency::type d );
 
40
 
 
41
wxString ListTlsCiphers(const wxString& priority);
34
42
 
35
43
#endif //__MISC_H__