~ubuntu-branches/ubuntu/maverick/icu/maverick-updates

« back to all changes in this revision

Viewing changes to source/layoutex/LXUtilities.h

  • Committer: Package Import Robot
  • Author(s): Jay Berkenbilt
  • Date: 2009-09-04 11:56:06 UTC
  • mfrom: (10.1.6 sid)
  • Revision ID: package-import@ubuntu.com-20090904115606-sqxxuizelam5tozb
Tags: 4.2.1-3
Change install-doc target to not fail if there are subdirectories of
doc/html.  This is necessary to handle the doc/html/search directory
created by doxygen 3.6.1.  (Closes: #544799)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 **********************************************************************
 
3
 *   Copyright (C) 2003, International Business Machines
 
4
 *   Corporation and others.  All Rights Reserved.
 
5
 **********************************************************************
 
6
 */
 
7
 
 
8
#ifndef __LXUTILITIES_H
 
9
 
 
10
#define __LXUTILITIES_H
 
11
 
 
12
#include "layout/LETypes.h"
 
13
 
 
14
U_NAMESPACE_BEGIN
 
15
 
 
16
class LXUtilities
 
17
{
 
18
public:
 
19
    static le_int8 highBit(le_int32 value);
 
20
    static le_int32 search(le_int32 value, const le_int32 array[], le_int32 count);
 
21
    static void reverse(le_int32 array[], le_int32 count);
 
22
    static void reverse(float array[], le_int32 count);
 
23
};
 
24
 
 
25
U_NAMESPACE_END
 
26
#endif