diff options
Diffstat (limited to 'libjava/gnu/java/awt/natEmbeddedWindow.cc')
-rw-r--r-- | libjava/gnu/java/awt/natEmbeddedWindow.cc | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/libjava/gnu/java/awt/natEmbeddedWindow.cc b/libjava/gnu/java/awt/natEmbeddedWindow.cc new file mode 100644 index 00000000000..0811d415482 --- /dev/null +++ b/libjava/gnu/java/awt/natEmbeddedWindow.cc @@ -0,0 +1,16 @@ +/* Copyright (C) 2003 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 <gnu/java/awt/EmbeddedWindow.h> +#include <java/awt/Window.h> + +::java::awt::Window* +gnu::java::awt::EmbeddedWindow::create (jint window_id, jint width, jint height) +{ + return new ::java::awt::Window (window_id, width, height); +} |