More const correctness

This commit is contained in:
Keith Winstein
2011-08-13 15:52:07 -04:00
parent 2e2578c26c
commit 3f66e86057
12 changed files with 115 additions and 87 deletions
+2 -4
View File
@@ -21,12 +21,10 @@ namespace Terminal {
class Display {
private:
void put_cell( bool initialized, FrameState &frame, const Framebuffer &f );
static void put_cell( bool initialized, FrameState &frame, const Framebuffer &f );
public:
Display() {}
std::string new_frame( bool initialized, const Framebuffer &last, const Framebuffer &f );
static std::string new_frame( bool initialized, const Framebuffer &last, const Framebuffer &f );
};
}