File: DESIGN

package info (click to toggle)
ftpgrab 0.1.5-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 376 kB
  • ctags: 335
  • sloc: cpp: 2,795; makefile: 26
file content (16 lines) | stat: -rw-r--r-- 667 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
The C++ design is supposed to give a loosely coupled, highly extensible
code base.

I'm interested in C++ design patterns, so any comments (even flames) about
the standard of my code/design are welcome. n.b. I know about the
following issues.

- throwing of exceptions in constructors, tsk tsk.
- "suicidial" constructors (delete this)
- Poor, non constructor/destructor automated memory management in places

For the curious, look at the base classes FGConnectionInterface,
FGPickerInterface and FGActionInterface. These interface definitions are
at the core of the programs extensibility.

One day I might copy my UML diagram into an art package and include it :-)