mirror of
https://github.com/reactos/CMake.git
synced 2024-11-25 04:29:52 +00:00
7bbaa4283d
Our Git commit hooks disallow modification or addition of lines with trailing whitespace. Wipe out all remnants of trailing whitespace everywhere except third-party code. Run the following shell code: git ls-files -z -- \ bootstrap doxygen.config '*.readme' \ '*.c' '*.cmake' '*.cpp' '*.cxx' \ '*.el' '*.f' '*.f90' '*.h' '*.in' '*.in.l' '*.java' \ '*.mm' '*.pike' '*.py' '*.txt' '*.vim' | egrep -z -v '^(Utilities/cm|Source/(kwsys|CursesDialog/form)/)' | egrep -z -v '^(Modules/CPack\..*\.in)' | xargs -0 sed -i 's/ \+$//'
54 lines
1.3 KiB
Plaintext
Executable File
54 lines
1.3 KiB
Plaintext
Executable File
import .example;
|
|
|
|
int main()
|
|
{
|
|
// ----- Object creation -----
|
|
|
|
write("Creating some objects:\n");
|
|
Circle c = Circle(10.0);
|
|
write(" Created circle.\n");
|
|
Square s = Square(10.0);
|
|
write(" Created square.\n");
|
|
|
|
// ----- Access a static member -----
|
|
|
|
write("\nA total of " + Shape_nshapes_get() + " shapes were created\n");
|
|
|
|
// ----- Member data access -----
|
|
|
|
// Set the location of the object
|
|
|
|
c->x_set(20.0);
|
|
c->y_set(30.0);
|
|
|
|
s->x_set(-10.0);
|
|
s->y_set(5.0);
|
|
|
|
write("\nHere is their current position:\n");
|
|
write(" Circle = (%f, %f)\n", c->x_get(), c->y_get());
|
|
write(" Square = (%f, %f)\n", s->x_get(), s->y_get());
|
|
|
|
// ----- Call some methods -----
|
|
|
|
write("\nHere are some properties of the shapes:\n");
|
|
write(" The circle:\n");
|
|
write(" area = %f.\n", c->area());
|
|
write(" perimeter = %f.\n", c->perimeter());
|
|
write(" The square:\n");
|
|
write(" area = %f.\n", s->area());
|
|
write(" perimeter = %f.\n", s->perimeter());
|
|
|
|
write("\nGuess I'll clean up now\n");
|
|
|
|
/* See if we can force 's' to be garbage-collected */
|
|
s = 0;
|
|
|
|
/* Now we should be down to only 1 shape */
|
|
write("%d shapes remain\n", Shape_nshapes_get());
|
|
|
|
/* Done */
|
|
write("Goodbye\n");
|
|
|
|
return 0;
|
|
}
|