*** empty log message ***

This commit is contained in:
Matthias Bäsken 2001-06-19 19:36:15 +00:00
parent 6a9084b210
commit fa618a58a0
25 changed files with 36 additions and 55 deletions

View File

@ -1,3 +1,6 @@
0.9.9 /test subdir added
some Makefiles were removed
0.9.8 a few file headers were fixed
0.9.7 first version for an internal release ...

View File

@ -1,10 +0,0 @@
OBJECTS = \
_basic$(o) \
_base_window$(o) \
_base_panel$(o) \
_color$(o) \
_file$(o) \
_file_panel$(o) \
_string_manip$(o) \
_window$(o)

View File

@ -1,6 +0,0 @@
D = window
L = libCGALWin
include ../Make.src

View File

@ -1,3 +0,0 @@
OBJECTS = _x_basic$(o)

View File

@ -1,6 +0,0 @@
D = mswin
L = ..\libCGALWin
include ../../Make.src

View File

@ -1,6 +0,0 @@
D = mswin
L = ..\libCGALWin
include ../../Make.src

View File

@ -1,7 +0,0 @@
OBJECTS = _x_basic$(o)
# _x_basic.c cannot be compiled with -O ?
CFLAGS=

View File

@ -1,8 +0,0 @@
DFLAGS = $(XINC_PATH)
D = x11
L = ../libCGALWin
include ../../Make.src

View File

@ -13,8 +13,10 @@ list<std::string> L2;
#endif
*/
int main()
int main(int argc, char *argv[])
{
if (argc >= 2) { return 0; }
CGAL::window W(400,400);
W.set_bg_color(CGAL::yellow);
W.display();

View File

@ -0,0 +1 @@
do not execute

View File

@ -5,8 +5,10 @@
using namespace std;
int main()
int main(int argc, char *argv[])
{
if (argc >= 2) { return 0; }
CGAL::panel P("Bitmap Buttons");
P.buttons_per_line(8);
P.set_button_space(3);

View File

@ -0,0 +1 @@
do not execute

View File

@ -3,8 +3,10 @@
#include <CGAL/LEDA/window.h>
#include <cmath>
int main()
int main(int argc, char *argv[])
{
if (argc >= 2) { return 0; }
CGAL::window W(450,500,"Event Demo");
W.display();

View File

@ -0,0 +1 @@
do not execute

View File

@ -14,8 +14,10 @@ void dummy(string fn)
std::cout << "dummy got parameter " << fn << "\n";
}
int main()
int main(int argc, char *argv[])
{
if (argc >= 2) { return 0; }
CGAL::window Win(600,600);
Win.init(0,600,0);

View File

@ -0,0 +1 @@
do not execute

View File

@ -28,8 +28,10 @@ void dummy(string fn)
std::cout << "dummy got parameter " << fn << "\n";
}
int main()
int main(int argc, char *argv[])
{
if (argc >= 2) { return 0; }
CGAL::window Win(600,600);
Win.init(0,600,0);

View File

@ -0,0 +1 @@
do not execute

View File

@ -4,7 +4,9 @@
#include <CGAL/LEDA/file.h>
int main() {
int main(int argc, char *argv[])
{
if (argc >= 2) { return 0; }
CGAL::menu M;
M.button("button 1");

View File

@ -0,0 +1 @@
do not execute

View File

@ -16,8 +16,10 @@ static unsigned char* bm_bits [] = {
using namespace std;
int main()
int main(int argc, char *argv[])
{
if (argc >= 2) { return 0; }
bool B = false;
CGAL::color col = CGAL::blue2;
double R = 3.1415;

View File

@ -0,0 +1 @@
do not execute

View File

@ -2,8 +2,10 @@
#include <CGAL/LEDA/window.h>
int main()
int main(int argc, char *argv[])
{
if (argc >= 2) { return 0; }
int count = 0;
CGAL::window W(400,100);

View File

@ -0,0 +1 @@
do not execute

View File

@ -1 +1 @@
0.9.8 (12 Jun 2001)
0.9.9 (19 June 2001)