]> git.tdb.fi Git - libs/core.git/blobdiff - source/console.cpp
Move class members and comments around
[libs/core.git] / source / console.cpp
index fed47bef04c25445b215aa857ca28433ea9251aa..9db77377f0c2267ea2997808764b607d36ffcbea 100644 (file)
@@ -115,11 +115,6 @@ void Console::get_size(unsigned &rows, unsigned &cols)
 #endif
 }
 
-Handle Console::get_event_handle()
-{
-       return 0;
-}
-
 unsigned Console::do_write(const char *buf, unsigned len)
 {
        if(!(mode&M_WRITE))
@@ -163,6 +158,11 @@ unsigned Console::do_read(char *buf, unsigned len)
        return ret;
 }
 
+Handle Console::get_event_handle()
+{
+       return 0;
+}
+
 Console &Console::instance(unsigned n)
 {
        static Console in(0);