blob: 7156ec34d849df1751f244712583e7de4266fc22 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
 | /*
 * Copyright (c) 2011 Vlad Voicu
 * Licensed under the Simplified BSD license.
 * See Documentation/Licenses/BSD-simplified.txt for more information.
 */
#pragma once
namespace Swift {
    class LastLineTracker {
        public:
            LastLineTracker();
            void setHasFocus(bool focus);
            bool getShouldMoveLastLine();
        private:
            bool lastFocus;
            bool shouldMove;
    };
}
 |