| Index: src/liveedit.h
|
| ===================================================================
|
| --- src/liveedit.h (revision 8618)
|
| +++ src/liveedit.h (working copy)
|
| @@ -143,14 +143,13 @@
|
| // A general-purpose comparator between 2 arrays.
|
| class Comparator {
|
| public:
|
| -
|
| // Holds 2 arrays of some elements allowing to compare any pair of
|
| // element from the first array and element from the second array.
|
| class Input {
|
| public:
|
| - virtual int getLength1() = 0;
|
| - virtual int getLength2() = 0;
|
| - virtual bool equals(int index1, int index2) = 0;
|
| + virtual int GetLength1() = 0;
|
| + virtual int GetLength2() = 0;
|
| + virtual bool Equals(int index1, int index2) = 0;
|
|
|
| protected:
|
| virtual ~Input() {}
|
|
|