Contents
Horstmann's CCC 3rd edition library
class Time
#include "ccc_time.h"
- Time()
- Time(hour, min, secong)
- get_seconds()
- get_minutes()
- get_hours()
- add_second(nseconds)
- seconds_from(time)
class Employee
#include "ccc_empl.h"
- Employee(name, salary)
- get_name()
- get_salary()
- set_salary(newSalary)
class GraphicWindow
#include "ccc_win.h"
- coord(topleft_x,top_left_y, bottom_right_x, bottom_right_y)
- clear()
- get_string(prompt)
- get_int(prompt)
- get_double(prompt)
- get_mouse(prompt)
- operator << shape
- cwin is a GraphicWindow object.
class Point
#include "ccc_win.h"
- Point(x,y)
- get_x()
- get_y()
- move(dx, dy)
class Circle
#include "ccc_win.h"
- Circle(center, radius)
- get_center()
- get_radius()
- move(dx, dy)
class Line
#include "ccc_win.h"
- Line(start_point, end_point)
- get_start()
- get_end()
- move(dx, dy)
class Message
#include "ccc_win.h"
- Message(place, string)
- Message(place, x)
- get_start()
- get_text()
- move(dx, dy)
The wxWindows library
TBA
. . . . . . . . . ( end of section Horstmann's CCC 3rd edition library) <<Contents | End>>
Abreviations
- Gnu::="Gnu's Not Unix", a long running open source project that supplies a
very popular C++ compiler.
- KDE::="Kommon Desktop Environment".
- OOP::="Object-Oriented Programming",
Current paradigm for programming.
- SP::="Structured Programming",
Previous paradigm for programming.
- TBA::="To Be Announced", something I should do.
- TBD::="To Be Done", something you have to do.
- UML::="Unified Modeling Language",
[ 15.html ]
(class notes on the UML and OOP).
End