// natVMChannels.cc - Native part of VMChannels class. /* Copyright (C) 2004, 2006 Free Software Foundation This file is part of libgcj. This software is copyrighted work licensed under the terms of the Libgcj License. Please consult the file "LIBGCJ_LICENSE" for details. */ #include #include #include #include #include #include #include using java::nio::channels::VMChannels; using java::io::FileInputStream; using java::io::FileOutputStream; using gnu::java::nio::channels::FileChannelImpl; FileInputStream* VMChannels::newInputStream(FileChannelImpl* ch) { // Needs to be native to bypass Java access protection. return new FileInputStream (ch); } FileOutputStream* VMChannels::newOutputStream(FileChannelImpl* ch) { // Needs to be native to bypass Java access protection. return new FileOutputStream (ch); }